- Published on
JavaScriptのdocument.locationの使い方を解説
- Authors
- Name
- Shou Arisaka / 有坂翔
JavaScriptのdocument.locationの使い方を解説します。
document.locationは、現在のページのURLを取得したり、URLを変更したりすることができます。
originメソッドを使えばurl正規表現置換の手間も省ける。
document.location.href
"https://tpc.googlesyndication.com/safeframe/1-0-9/html/container.html"
document.location.origin
"https://tpc.googlesyndication.com"
document.location.pathname
"/safeframe/1-0-9/html/container.html"
document.location.host
"tpc.googlesyndication.com"
document.location.protocol
"https:"