最新的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";
試一試»

<區域對象