欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時間: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)文章

最新評論