最新的Web开发教程
 

Anchor password Property

<锚对象

返回一个链接的密码部分:

var x = document.getElementById("myAnchor").password;

x的结果将是:

smith123
试一试»

定义和用法

密码属性设置或返回的密码部分href属性值。

在URL中,密码的部分是由用户输入的密码。 它的用户名后,并在主机名前指定。

实施例: 20(JohnSmith对%图20是%第二十条%20username%20于是%20smith123%图20是%第二十条%20passwordis%第二十条%20password / index.html中“> HTTPS:// JohnSmith对:smith123 @ www.example.com (johnsmith is the username and smith123 is the password )。

提示:使用用户名属性来设置或返回的用户名部分href属性值。


浏览器支持

属性
password 不支持 不支持

句法

返回密码属性:

anchorObject .password

设置密码属性:

anchorObject .password= 属性值
描述
password 指定URL的密码部分

技术细节

返回值: 一个String,表示URL的密码部分

更多示例

更改链接的密码部分:

document.getElementById("myAnchor").password = "newPassword101";
试一试»

<锚对象