・「URLSearchParams」を使う。
使い方
・クエリ文字列内の「type」を取得して処理を分ける例
const searchParams = new URLSearchParams(window.location.search)
const type = searchParams.get("type");
if (type) {
switch (type) {
case "request":
データ取得();
break;
case "loading":
ロード処理();
break;
default:
console.log("type:" + type);
}
}
参考
https://maku77.github.io/js/web/search-params.html