色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

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

瀏覽器兼容性

HTML全局屬性accesskeyHTML全局屬性accesskeyHTML全局屬性accesskeyHTML全局屬性accesskeyHTML全局屬性accesskey
accesskeyYesYesYesYesYes

例子

以下代碼以簡單的形式使用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