location
對象表示當前頁面的URL信息。例如,一個完整的URL:html
http://www.example.com:8080/path/index.html?a=1&b=2#TOP
能夠用location.href
獲取。要得到URL各個部分的值,能夠這麼寫:ide
location.protocol; // 'http' location.host; // ' location.port; // '8080' location.pathname; // '/path/index.html' location.search; // '?a=1&b=2' location.hash; // 'TOP'
要加載一個新頁面,能夠調用location.assign()
。若是要從新加載當前頁面,調用location.reload()
方法很是方便。
spa
<a onclick="location.assign('http://www.baidu.com');">加載一個新頁面</a> <a onclick="location.reload();">從新加載當前頁面</a>