host屬性設置或返回URL的主機名和端口。
注意:如果未在URL中指定host屬性,則不會返回端口號。
返回主機屬性:
location.host
設置主機屬性:
location.host = hostname:port
var x = location.host; document.querySelector("#output").innerHTML = x;測試看看?/?
所有瀏覽器完全支持host屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
host | 是 | 是 | 是 | 是 | 是 |
值 | 描述 |
---|---|
hostname:port | 字符串,指定URL的主機名和端口號 |
返回值: | 一個字符串,表示域名和端口號或URL的IP地址 |
---|
此示例顯示所有位置屬性:
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);測試看看?/?
位置參考:location.href屬性
位置參考:location.hostname屬性
位置參考:location.pathname屬性
位置參考:location.protocol屬性