HTML全局屬性accesskey

2018-01-05 13:58 更新

HTML全局屬性accesskey


accesskey 屬性設(shè)置一個(gè)或多個(gè)將選擇元素的鍵盤快捷鍵。

accesskey 屬性添加到三個(gè)輸入元素。

這使用戶能夠使用鍵盤快捷鍵在已使用的元素之間移動(dòng)。

觸發(fā)訪問鍵設(shè)置所需的組合鍵在不同平臺(tái)之間有所不同。

對(duì)于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

例子

以下代碼以簡(jiǎn)單的形式使用 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



以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)