js中如何獲取頁面的Url,網域名稱和埠號

2022-01-29 21:14:19 字數 419 閱讀 1254

有時候通過獲取上個頁面的url來做乙個跳轉,獲取網域名稱防止非正常訪問

獲取上乙個頁面的乙個url,這個url一般做乙個頁面的跳轉

window.location.href

獲取乙個頁面的主機名

window.location.hostname

獲取乙個頁面的主機名和埠號相當於是hostname和port

window.location.host

獲取主機的埠號

window.location.port

獲取url的路徑部分

window.location.pathname

獲取查詢部分的url

window.location.searchurl

獲取html中的第乙個#(描點)

window.location.hash

js獲取當前頁面的url

設定或獲取物件指定的檔名或路徑。設定或獲取整個 url 為字串。設定或獲取與 url 關聯的埠號碼。設定或獲取 url 的協議部分。設定或獲取 href 屬性中在井號 後面的分段。設定或獲取 location 或 url 的 hostname 和 port 號碼。設定或獲取 href 屬性中跟在問號...

JS獲取當前頁面的URL

var url url window.location.href 獲取完整url alert url url window.location.pathname 獲取檔案路徑 檔案位址 alert url test index.html url window.location.protocol 獲取協...

js獲取當前頁面的url資訊

設定或獲取物件指定的檔名或路徑。alert window.location.pathname 設定或獲取整個 url 為字串。alert window.location.href 設定或獲取與 url 關聯的埠號碼。alert window.location.port 設定或獲取 url 的協議部分...