运行 ❯
获取你
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>Keyboard Events</h1> <h2>The charCode Property</h2> <p>Press a keyboard key in the input field and display the value:</p> <input type="text" size="40" onkeypress="myFunction(event)"> <p id="demo"></p> <p>The charCode property is deprecated. Use the key property instead.</p> <script> function myFunction(event) { let value = event.charCode; document.getElementById("demo").innerHTML = "The value is: " + value; } </script> </body> </html>