Parent form
<form action="target.php" method="post" id="form1">
Iframe form
<form action="target.php" method="post" id="form2">
This JS works fine submitting from Iframe using a button placed in parent
var iframedoc = document.getElementById('myIframe').contentWindow.document;
var inputs = iframedoc.getElementsByTagName('input');
iframedoc.getElementsByTagName('form')[0].submit();
I try to modify JS with document.getElementById("form1").submit(); to send parent form as well but I end up with results only from one form and not both
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…