最新的Web開發教程
 

Area pathname Property

<區域對象

返回URL的路徑名在圖像映射中的特定區域:

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

x的結果可能是:

/jsref/venus.htm
試一試»

定義和用法

該路徑屬性設置或返回的路徑部分href屬性值。

href屬性指定的區域中的鏈接的目標。

Note:在上面的例子,IE 9和更早版本返回"jsref/venus.htm"而IE 10+,Firefox,歌劇,鉻,和Safari返回"/jsref/venus.htm"


瀏覽器支持

屬性
pathname

句法

返回的路徑屬性:

areaObject .pathname

設置路徑屬性:

areaObject .pathname= 屬性值
描述
path 指定URL的路徑

技術細節

返回值: 一個String,表示URL的路徑

更多示例

更改URL中的圖像映射中的特定區域的路徑名:

document.getElementById("venus").pathname = "somenewpathname";
試一試»

<區域對象