我有以下代碼:訪問window.event.altkey中的setInterval
function optionkey()
{
e = window.event;
if(e.altKey)
{
return "down";
}
else
{
return "up";
}
}
interval = setInterval(function(){
if(optionkey() == "down") {
clearInterval(interval);
alert(5);
}
}, 100);
基本上代碼應該運行alert(5)
當用戶按下option鍵,而是我得到的錯誤的負載:Uncaught TypeError: Cannot read property 'altKey' of undefined
任何人都可以告訴我爲什麼這樣做,以及如何解決它?
謝謝。