我有这个 html 代码:
<form name="input" action="html_form_action.asp" method="post" id="formID">
Username: <input type="text" name="user" />
<input type="submit" value="Submit" />
</form>
<script>
for (i=0;i<10;i++) {document.getElementById('formID').submit; }
</script>
我正在尝试多次提交相同的内容。
但是你可以猜到,它总是提交一次,然后刷新页面。
我怎样才能避免这种情况并尽可能多次提交?