运行 ❯
获取您自己的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The accessKey Property</h2> <p>The accesskey attribute specifies a shortcut key to activate/focus an element:</p> <a id="w3s" href="https://w3schools.org.cn/">W3Schools</a><br> <p>The implementation is different in different browsers.</p> <p>In this example, in Chrome, "Alt + w" is for w3schools.com.</p> <script> document.getElementById("w3s").accessKey = "w"; </script> </body> </html>