W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <body> <form> Male: <input id="male" accesskey="m" type="radio" name="Sex" value="Male" /> <br /> Female: <input id="female" accesskey="f" type="radio" name="Sex" value="Female" /> </form> <p>The access key for the radio buttons are: <script type="text/javascript"> document.write(document.getElementById('male').accessKey); document.write(" and "); document.write(document.getElementById('female').accessKey); </script></p> </body> </html>