Location: host
如何用 JS 取得網址(URL)中的網域名稱(domain name),在 location 中有兩個可以使用,分別為 host 與 hostname,location.host 的執行結果如下:
範例 Example
假設當前網址為:
https://www.seanacnet.com:80/js/location-host.html?id=111&t=9#template
使用範例:
let s = location.host;
console.log(s)
// 輸出 : www.seanacnet.com
相容性
要查看 location.host 在各個瀏覽器的相容性,請點擊以下連結:
結語
如果你還想進一步了解 JS 取 URL 的其他參數,可前往這邊查詢
2 則自動引用通知