HTML全局属性accesskey
2018-01-05 13:58 更新
HTML全局属性accesskey
accesskey
属性设置一个或多个将选择元素的键盘快捷键。
accesskey
属性添加到三个输入元素。
这使用户能够使用键盘快捷键在已使用的元素之间移动。
触发访问键设置所需的组合键在不同平台之间有所不同。
对于Windows,它是Alt键和accesskey值按在一起。
- press Alt+n to focus on the first input element and enter my name.
- press Alt+p to focus on the second input element and enter my password.
- press Alt+s to focus on Log In button, which submits the form.
句法
<element accesskey="character">
属性值
- character
- shortcut key to activate the element
浏览器兼容性
accesskey |
Yes | Yes | Yes | Yes | Yes |
例子
以下代码以简单的形式使用 accesskey
属性。
<!DOCTYPE HTML>
<html>
<body>
<form>
Name: <input type="text" name="name" accesskey="n"/>
<p/>
Password: <input type="password" name="password" accesskey="p"/>
<p/>
<input type="submit" value="Log In" accesskey="s"/>
</form>
</body>
</html>
以上内容是否对您有帮助:
更多建议: