表单提交的时候大多数用户都习惯用回车键来进行提交,页面接受回车键的处理如下: if(navigator.userAgent.indexOf("MSIE")>0) { //IE document.onkeydown=function(){ if(13 == event.keyCode){ alert('browser is ie and enter key down'); } } }else{ //非IE window.onkeydown=function(){ if(13 ...
javascript 判断回车 换行 js判断是否按下回车键 script language='javascript'>document.onkeydown=function(){if(event.keyCode==13){alert('回车键.');}else{alert('你按错了键.');}} 1. 2. 3. 4. 5. 6. 7. 8. 9. 10.