Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQueryon('submit', ...)正确拾取本机表单提交,即按下提交按钮时,但它不能很好地处理 JS 表单提交,至少在 FF&IE 上
on('submit', ...)
考虑到这一点,如何“正确”添加提交侦听器?通过更改的行为修改 DOM 原型HTMLFormElement.prototype.submit在 IE7 上不起作用
HTMLFormElement.prototype.submit
摆弄
使用 jQuery.submit()提交表单将解决这个问题。
.submit()
$('#someForm').submit();
jsFiddle 演示
当然,如果你真的坚持使用原生 DOM 也无济于事.submit()。