我想将我的FORM中的数据发布到另一个域上的IFRAME.有没有简单的方法来做到这一点?
<iframe name="iframe" width="100" height="100" src="www.otherdomain.com" />
<form action="www.mydomain.com" method="post" target="iframe">
<input type="text" name="text1" value="123" />
<input type="text" name="text2" value="456" />
<input type="submit" value="submit"/>
</form>
Run Code Online (Sandbox Code Playgroud)