Window Location
window.location 物件在編寫時可不使用 window 這個前綴。
一些例子:
location.hostname 回web 主機的網域
location.pathname 傳回目前頁面的路徑與檔案名稱
location.port 傳回web 主機的連接埠(80 或443)
location.port 傳回web 主機的連接埠(80 或443)
location.proweb協定(http:// 或https://)
Window Location Href
location.href 屬性傳回目前頁面的URL。
實例
回傳(目前頁面的)整個網址:<script> document.write(location.href); </script>以上程式碼輸出為:http://www.w3school.com.cn/js/ . .. indow Location Pathname
location.pathname 屬性傳回URL 的路徑名。
實例
傳回目前URL 的路徑名稱:<script> document.write(location.pathname); </script>以上程式碼輸出為:/js/js_window_location.aspWindow Location Assign
location.assign(新的文檔。
實例