HTML全局屬性accesskey
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>
Click to view the demo