2017-03-25 5 views

Antwort

1

Dies kann Ihnen helfen:

window.onkeypress = function(event) { 
    if (event.keyCode == 41) { 
     // do a function 
    } 
} 

list of the keyCode

Verwandte Themen