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 在各個瀏覽器的相容性,請點擊以下連結:
結語
如果你還想進一步了解 JS 取 URL 的其他參數,可前往這邊查詢
1 則自動引用通知