小码哥的IT人生

HTML DOM AccessKey 属性

JavaScript基础 2022-06-08 16:17:11小码哥的IT人生shichen

HTML DOM AccessKey 属性

定义和用法

accessKey 属性可设置或返回访问密码域的快捷键。

注释:请使用 Alt + accessKey 为拥有指定快捷键的元素赋予焦点。

语法

passwordObject.accessKey=accessKey

实例

下面的例子返回密码域的快捷键:

<html>
<body>
<form>
<input type="password" accesskey="p" id="password1" />
</form>
<p>AccessKey for password field is:
<script type="text/javascript">
x=document.getElementById('password1');
document.write(x.accessKey);
</script></p>
</body>
</html>

TIY

完整实例【返回访问密码域的快捷键】:

<html>
<body>
<form>
<input type="password" accesskey="p" id="password1" />
</form>
<p>AccessKey for password field is:
<script type="text/javascript">
x=document.getElementById('password1');
document.write(x.accessKey);
</script></p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024