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

Javascript

[JS]Javascript 取得網址目前頁面路徑 location pathname

javascript location.pathname

location.pathname

Location: pathname

想要用 Javascript 取得網址目前 URL 中的頁面路徑,使用 location 中的 pathname。

location.pathname 可以直接取得目前包含頁面名稱的路徑,但不包含 Get、錨點名稱、domain,用法如下 :

範例 Example

假設當前網址為:

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

使用範例:

let s = location.pathname;

console.log(s)

// 輸出 : /js/location-pathname.html

相容性

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

查看 location.pathname 瀏覽器相容性

結語

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

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

發表迴響