Fly higher! Sky is the limit!

webの現場で働く人のブログ

【JavaScript】現在のURLを取得し、パラメータは除外する

コード

let url = window.location.href;
url = url.replace(location.search , '');