参考地址:http://blog.csdn.net/xuezhongsong/article/details/6859037
方式1:全局控制回车,13-回车键,27-ESC,113-F2
document.onkeydown=function(e){
var e = e || event;
var currKey = e.keyCode || e.which || e.charCode;//支持IE,FireFox
if (currKey == 13) {
return false;
}
}
方式2:input中当回车的时候,不理会
<input type="text" onkeydown="return ClearSubmit(event)" /> function ClearSubmit(e) {
if (e.keyCode == 13) {
return false;
}
}
方式3:将form中的submit事件设置返回false,则不会进行提交
<form onsubmit="return false;">.......</form>
方式4:在form中增加一个隐藏的input
<
input
type
=
"text"
style
=
"display:none"
/>