hostname屬性設(shè)置或返回URL的主機名。
返回主機名屬性:
location.hostname
設(shè)置主機名屬性:
location.hostname = hostname
var x = location.hostname; document.querySelector("#output").innerHTML = x;測試看看?/?
所有瀏覽器完全支持hostname屬性:
屬性 | ![]() | ![]() | ![]() | ![]() | ![]() |
hostname | 是 | 是 | 是 | 是 | 是 |
值 | 描述 |
---|---|
hostname | 字符串,指定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.host屬性
位置參考:location.pathname屬性
位置參考:location.protocol屬性