設(shè)置或獲取對象指定的文件名或路徑囊嘉。
alert(window.location.pathname)
設(shè)置或獲取整個 URL 為字符串讹语。
alert(window.location.href);
設(shè)置或獲取與 URL 關(guān)聯(lián)的端口號碼新锈。
alert(window.location.port)
設(shè)置或獲取 URL 的協(xié)議部分停做。
alert(window.location.protocol)
設(shè)置或獲取 href 屬性中在井號“#”后面的分段。
alert(window.location.hash)
設(shè)置或獲取 location 或 URL 的 hostname 和 port 號碼绍昂。
alert(window.location.host)
設(shè)置或獲取 href 屬性中跟在問號后面的部分唯绍。
alert(window.location.search)
獲取變量的值(截取等號后面的部分)
var url = window.location.search;
alert(url.length);
alert(url.lastIndexOf('='));
var loc = url.substring(url.lastIndexOf('=')+1, url.length);