原生js实现shift/ctrl/alt按键的获取
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:document.onclick=function(e){alert(getKey(e));};functiongetKe...
复制代码 代码如下:
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;
};