最新的Web开发教程
 

Area password Property

<区域对象

返回的URL在图像映射中的特定区域的密码部分:

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

x的结果将是:

smith123
试一试»

定义和用法

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

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 不支持 不支持

句法

返回密码属性:

areaObject .password

设置密码属性:

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

技术细节

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

更多示例

更改图像映射的特定区域的密码部分:

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

<区域对象