页面上Enter 键禁用

        function   NoExec()   
        {   
            if(event.keyCode==13)   event.returnValue=false;   
       } 
      
       document.onkeypress=NoExec;
原文地址:https://www.cnblogs.com/KingStar/p/1712821.html