フルパスの場合
window.location.href
// 例
const url = window.location.href;
console.log(url);
ルートドメインなしの場合
window.location.pathname
// 例
const url = window.location.pathname;
console.log(url);
参考:
フルパスの場合
window.location.href
// 例
const url = window.location.href;
console.log(url);
ルートドメインなしの場合
window.location.pathname
// 例
const url = window.location.pathname;
console.log(url);
参考:
あじ
画面の開発を主にやっているプログラマーです
くわしくはAboutを見てください