2

我想知道是否有任何方法(使用 JS 或其他方式)来自动提交一个表单,其中的字段名称和 id 为“提交”。本质上,我的整个 HTML 代码如下所示:

<html>
<body onload=myForm.submit()>
<form id="myForm" name="myForm" action="http://example.com/examplePage.do" method="POST">
<input type=hidden name="val1" id="val1" value="some_Value"/>
<input type=hidden name="val2" id="val2" value="another_Value"/>
<input type=hidden name="val3" id="val3" value="yet_another_Value"/>
<input type=hidden name="submit" id="submit" value="Continue"/>
</form>
</body>
</html>

显然, myForm.submit() 返回myForm.submit is not a function错误。如果没有值为“继续”的“提交”字段,服务器将拒绝该请求,并且要求是自动提交。

4

1 回答 1

6

该表单的提交功能完全无法访问(已被覆盖)。但是,您可以从另一种形式中窃取一个。

document.createElement('form').submit.call(document.getElementById('myform'))

在旧的 IE 中不起作用。(我认为支持从 IE7 开始出现)

于 2013-09-21T21:49:52.963 回答