在页面上 获取键盘事件
需要用原生才行, jquery无效
function showkey(event){
asc = event.keyCode;
key = String.fromCharCode(asc);
str += key;
console.log(str)
}
document.onkeypress=showkey;
需要用原生才行, jquery无效
function showkey(event){
asc = event.keyCode;
key = String.fromCharCode(asc);
str += key;
console.log(str)
}
document.onkeypress=showkey;
本文标题:在页面上 获取键盘事件
本文链接:https://www.haomeiwen.com/subject/qtdnjktx.html
网友评论