location對(duì)象
location.href-- 返回或設(shè)置當(dāng)前文檔的URL
location.search-- 返回URL中的查詢字符串部分。例如 http://www.dreamdu.com/dreamdu.php?id=5&name=dreamdu 返回包括(?)后面的內(nèi)容?id=5&name=dreamdu
location.hash-- 返回URL#后面的內(nèi)容揍魂,如果沒有#粥烁,返回空
location.host-- 返回URL中的域名部分,例如www.dreamdu.com
location.hostname-- 返回URL中的主域名部分留荔,例如dreamdu.com
ocation.pathname-- 返回URL的域名后的部分吟孙。例如 http://www.dreamdu.com/xhtml/ 返回/xhtml/
location.port -- 返回URL中的端口部分。例如 http://www.dreamdu.com:8080/xhtml/ 返回8080
location.protocol -- 返回URL中的協(xié)議部分存谎。例如 http://www.dreamdu.com:8080/xhtml/ 返回(//)前面的內(nèi)容http:
location.assign -- 設(shè)置當(dāng)前文檔的URL
location.replace() -- 設(shè)置當(dāng)前文檔的URL拔疚,并且在history對(duì)象的地址列表中移除這個(gè)URL location.replace(url);
location.reload() -- 重載當(dāng)前頁(yè)面
history對(duì)象
history.go() -- 前進(jìn)或后退指定的頁(yè)面數(shù) history.go(num);
history.back() -- 后退一頁(yè)
history.forward() -- 前進(jìn)一頁(yè)
navigator對(duì)象
navigator.userAgent -- 返回用戶代理頭的字符串表示(就是包括瀏覽器版本信息等的字符串)
navigator.cookieEnabled -- 返回瀏覽器是否支持(啟用)cookie