全国统一服务热线:400-633-9193

js实现同一个页面,多个enter事件绑定的示例

    网络     2018-11-08    1178

困得不行了 ,脑袋转不动了,大家直接拿代码用吧。。。

1
2
3
4
5
6
7
8
document.onkeydown = function(e) {
 var ev = (typeof event!= 'undefined') ? window.event : e;
 if(ev.keyCode == 13 && document.activeElement.id == "") {//activeElement活动事件,该事件只可以使用于输入域中
  console.log("内容111:" + document.activeElement.value);
 }else if(ev.keyCode==13&& document.activeElement.id==''){
  console.log("内容222:" + document.activeElement.value);
 }
};

以上这篇js实现同一个页面,多个enter事件绑定的示例就是小编分享给大家的全部内容了


  分享到:  
0.2301s