运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>HTML DOM Events</h1> <h2>The onkeydown Event</h2> <p>Assign an onkeydown event to an input element.</p> <p>Press a key inside the text field to set a red background color.</p> <input type="text" id="demo"> <script> document.getElementById("demo").onkeydown = function() {myFunction()}; function myFunction() { document.getElementById("demo").style.backgroundColor = "red"; } </script> </body> </html>