Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.5k views
in Technique[技术] by (71.8m points)

javascript - Submit forms from both parent and iframe to same target

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

this worked for me

<input type="button" value="submit" onclick="
var iframedoc = document.getElementById('myIframe').contentWindow.document;
var inputs = iframedoc.getElementsByTagName('input');
$('#form1').append($(inputs));
document.getElementById('form1').submit();">

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...