html 按下Enter键触发事件

来源:互联网 发布:网易云 网络出错 编辑:程序博客网 时间:2024/05/17 04:50
document.onkeydown=function(e){  var keycode=document.all?event.keyCode:e.which;  if(keycode==13){   alert("hello");  }  }
0 0
原创粉丝点击