1つのパスが選択されている場合、menuepointにクラスを追加したいと思います。
すべてのサイトが独自の.php
/.html
ファイルである場合は簡単ですが、すべてが1つの .php
ファイルでルール化され、すべてがアクション(?action=main
、?action=userinformation
)を介してナビゲートされます。
パスとアクションでこの作業を行うための代替手段を探しています。
if (location.pathname == "/index.php") {
$("#main1").addClass("mainActive");
} else if (location.pathname == "/index.php?action=other") {
$("#main2").addClass("mainActive");
}