紀錄工作經驗、相關知識,解決技術相關問題。

Javascript

[JS]Javascript 取得網址當前協議 location protocol

javascript location.protocol

location.protocol

Location: protocol

有時候我們會需要用 JS 取得網址當前的協議,用來判斷網頁目前是在 http 還是 https,這時可以使用 location 中的 protocol ,location.protocol 用法如下:

範例 Example

假設當前網址為:

https://www.seanacnet.com:80/js/location-protocol.html?id=111&t=9#template

使用範例:

let s = location.protocol;

console.log(s)

// 輸出 : https:

相容性

要查看 location.protocol 在各個瀏覽器的相容性,請點擊以下連結:

查看 location.protocol 瀏覽器相容性

結語

如果你還想進一步了解 JS 取 URL 的其他參數,可前往這邊查詢

[JS] Javascript 取得網址 URL 與相關參數 – location

發表迴響