使用按钮在iframe外部提交iframe表单
P粉316110779
2023-09-04 10:44:17
<p>我有一个contactus.html文件,其中包含一个iframe:<code><iframe name="myframe" id="frame1" src="contact_inputs.php"></iframe></code>,其中只包含contact_inputs.php中的三个输入框。</p>
<p>我想要通过iframe外部的按钮将iframe文件中的表单提交到php_form.php。</p>
<blockquote>
<p>联系人.html</p>
</blockquote>
<pre class="brush:php;toolbar:false;"><iframe name="myframe" id="frame1" src="contact_inputs.php"></iframe>
<form action="php_form.php" method="post">
<input type="submit" name="DoIt" value="submit">
</form></pre>
<blockquote>
<p>contact_inputs.php</p>
</blockquote>
<pre class="brush:php;toolbar:false;"><form>
<input type="" name="cn">
<input type="" name="ex">
<input type="" name="cr">
</form></pre>
在这里你可以尝试这个逻辑: