在返回时停止表单提交

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在返回时停止表单提交相关的知识,希望对你有一定的参考价值。

Works in IE not Firefox/Mozilla.
  1. <SCRIPT LANGUAGE="javascript">
  2.  
  3. <!-- Begin
  4. function onKeyPress () {
  5. var keycode;
  6. if (window.event) keycode = window.event.keyCode;
  7. else if (e) keycode = e.which;
  8. else return true;
  9. if (keycode == 13) {
  10. alert("Please Click ONCE on the Submit button to send this");
  11. return false
  12. }
  13. return true
  14. }
  15. document.onkeypress = onKeyPress;
  16. // End -->
  17. </script>

以上是关于在返回时停止表单提交的主要内容,如果未能解决你的问题,请参考以下文章

停止表单提交的 JavaScript 代码

提交到 ASP.NET 页面的 PDF 表单创建返回 HTML 文件

停止输入/返回键提交表单[重复]

当函数返回false时如何在strut2 <sx:submit onClick="return myfunction(a, b)" />中停止提交表单

Javascript - 根据ajax响应停止表单提交[重复]

名称为提交的按钮停止触发表单的提交事件? [复制]