$.ready(function () {
document.onkeydown = processKeyDown;
//當瀏覽器讀到這個語句時,無論按下鍵盤上的哪個鍵,都將呼叫processKeyDown() 函數。
}
function processKeyDown() {
var key = event.keyCode;
if (key == 9) { //key == 9 ==> Tab Key==13==>Enter
//按下"tab"後發生的事件
}
}
沒有留言:
張貼留言