最新的Web開發教程
 

位置路徑屬性

定位對象參考 Location對象

返回當前URL的路徑名:

var x = location.pathname;

x的結果將是:

試一試»

定義和用法

該路徑屬性設置或返回URL的路徑名。


瀏覽器支持

屬性
pathname

句法

返回的路徑屬性:

location.pathname

設置路徑屬性:

location.pathname= path

屬性值

Value Type Description
path String Specifies the pathname of the URL

技術細節

返回值: 一個字符串,代表路徑

定位對象參考 Location對象