原生js实现shift/ctrl/alt按键的获取

Gretchen ·
更新时间:2024-11-10
· 586 次阅读

代码如下:
document.onclick = function(e){
alert(getKey(e));
};
function getKey(e){
var e = e || window.event;
var keys = [];
if(e.shiftKey){
keys.push("shift键");
};
if(e.ctrlKey){
keys.push("ctrl键");
};
if(e.altKey){
keys.push("alt键");
};
return keys;
};



ctrl js

需要 登录 后方可回复, 如果你还没有账号请 注册新账号