設(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);
轉(zhuǎn)自:http://www.cnblogs.com/glj1203/archive/2011/04/07/2008054.html