この例では、現在のURLを取得するJavaScriptプログラムの作成方法を学習します。
例:現在のURLを取得する
// program to get the URL
let url1 = window.location.href;
let url2 = document.URL;
console.log(url1);
console.log(url2);
出力
https://www.google.com/ https://www.google.com/
上記のプログラムでは、 window.location.href
プロパティとdocument.URL
プロパティを使用して、現在のページのURLを取得します。
window.location.href property
とdocument.URL
はどちらも、現在のページのURLを返します。