运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>Is the Shift Key Pressed?</h1> <p>Write som text in the input field, then press down the Shift key and write some more text in the input field:</p> <input type="text" size="40" onkeydown="myFunction(event)"> <p id="demo"></p> <script> function myFunction(event) { let x = event.getModifierState("Shift"); document.getElementById("demo").innerHTML = "Pressing the shift key: " + x; } </script> </body> </html>