码迷,mamicode.com
首页 > Web开发 > 详细

js阻止页面enter键入的事件触发

时间:2019-12-19 19:28:03      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:div   arguments   win   style   rop   function   bubble   down   onkeydown   


<!-- 这一段代码阻止了当前document中的 enter键的 keydown 事件 抄自网络-->
<script type="text/javascript"> document.onkeydown = function() { var evt = window.event || arguments[0]; if (evt && evt.keyCode == 13) { if (typeof evt.cancelBubble != "undefined") evt.cancelBubble = true; if (typeof evt.stopPropagation == "function") evt.stopPropagation();      return false; } return true; } </script>  

js阻止页面enter键入的事件触发

标签:div   arguments   win   style   rop   function   bubble   down   onkeydown   

原文地址:https://www.cnblogs.com/dengsheng/p/12069393.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!