亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

原生js實(shí)現(xiàn)shift/ctrl/alt按鍵的獲取

 更新時(shí)間:2013年04月08日 11:34:59   投稿:whsnow  
小測試shift、ctrl、alt按鍵的獲取,感興趣的朋友可以參考下哈,希望可以幫助到你

復(fù)制代碼 代碼如下:

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

相關(guān)文章

最新評論