最新的Web開發教程
 

Anchor pathname Property

<錨對象

返回鏈接的路徑名:

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

x的結果將是:

/test.htm
試一試»

定義和用法

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

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


瀏覽器支持

屬性
pathname

句法

返回的路徑屬性:

anchorObject .pathname

設置路徑屬性:

anchorObject .pathname= path

屬性值

描述
path 指定URL的路徑名

技術細節

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

更多示例

更改鏈接的路徑名:

document.getElementById("myAnchor").pathname = "newpathname";
試一試»

相關頁面

JavaScript的參考: location.pathname Property


<錨對象