pathname屬性設(shè)置或返回一個(gè)URL的路徑名。
路徑名是一個(gè)字符串,該字符串以主機(jī)名開(kāi)頭,包含一個(gè)初始的“/”,后跟URL的路徑。
返回路徑名屬性:
location.pathname
設(shè)置路徑名屬性:
location.pathname = path
var x = location.pathname; document.querySelector("#output").innerHTML = x;測(cè)試看看?/?
所有瀏覽器完全支持pathname屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
pathname | 是 | 是 | 是 | 是 | 是 |
值 | 描述 |
---|---|
path | 字符串,指定URL的路徑 |
返回值: | 字符串,表示URL的路徑;如果沒(méi)有路徑,則為空字符串 |
---|
此示例顯示所有位置屬性:
var txt = ""; txt += "<p>Host: " + location.host + "</p>"; txt += "<p>Hostname: " + location.hostname + "</p>"; txt += "<p>Href: " + location.href + "</p>"; txt += "<p>Origin: " + location.origin + "</p>"; txt += "<p>Pathname: " + location.pathname + "</p>"; txt += "<p>Protocol: " + location.protocol + "</p>"; txt += "<p>Search: " + location.search + "</p>"; document.write(txt);測(cè)試看看?/?
位置參考:location.href屬性
位置參考:location.host屬性
位置參考:location.origin屬性
位置參考:location.protocol屬性