在返回时停止表单提交
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在返回时停止表单提交相关的知识,希望对你有一定的参考价值。
Works in IE not Firefox/Mozilla.
<!-- Begin function onKeyPress () { var keycode; if (window.event) keycode = window.event.keyCode; else if (e) keycode = e.which; else return true; if (keycode == 13) { alert("Please Click ONCE on the Submit button to send this"); return false } return true } document.onkeypress = onKeyPress; // End --> </script>
以上是关于在返回时停止表单提交的主要内容,如果未能解决你的问题,请参考以下文章
提交到 ASP.NET 页面的 PDF 表单创建返回 HTML 文件
当函数返回false时如何在strut2 <sx:submit onClick="return myfunction(a, b)" />中停止提交表单