小小的demo,用js捕捉鍵盤盤上按下了那個鍵,然後展示出對應的code值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <!DOCTYPE html> <html> <head> <script> function showKeyCode(event) { document.getElementById("result").value= event.keyCode; } </script> </head> <body onkeyup="showKeyCode(event)"> <p>按下鍵盤上的鍵,文本框中會顯示對應的code</p> <input type="text" id="result" value="1" /> </body> </html>