js同一个页面,多个enter事件绑定

时间:2022-10-30 22:29:45
js同一个页面,多个enter事件绑定 困得不行了 ,脑袋转不动了,大家直接拿代码用吧。。。

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);
}
};