js禁止按回车键时表单自动提交

//键盘enter事件
        document.onkeypress=function(){
    if(event.keyCode==13){
   return false;
}
        }

你可能感兴趣的:(function)