Senden Sie das Iframe-Formular außerhalb des Iframes mit der Schaltfläche
P粉316110779
2023-09-04 10:44:17
<p>Ich habe eine contact.html-Datei, die einen iframe enthält: <code><iframe name="myframe" id="frame1" src="contact_inputs.php"></iframe> </code>, der nur die drei Eingabefelder in contact_inputs.php enthält. </p>
<p>Ich möchte ein Formular in einer Iframe-Datei über eine Schaltfläche außerhalb des Iframes an php_form.php senden. </p>
<blockquote>
<p>Kontakt.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>
在这里你可以尝试这个逻辑: