我想添加一個類到menuepoint如果選擇了一個路徑。location.pathname
這將是容易的,如果每一個網站是自己的.php
/.html
文件,但是一切都在一個.php
文件統治,一切都在導航操作(?action=main
,?action=userinformation
)。
我在找一種替代方式以獲得此作品的路徑和的動作。
if (location.pathname == "/index.php") {
$("#main1").addClass("mainActive");
} else if (location.pathname == "/index.php?action=other") {
$("#main2").addClass("mainActive");
}
使用PHP從查詢字符串中讀取'action',然後在適當的元素上設置類。 –
'location.search'包含GET params字符串。 – pawel