Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
手风琴菜单有一些顶级项目,这些项目在单击时只是展开菜单的相应部分。当 URL 包含一些关键字时,有没有办法触发这些扩展?例如:当 URL 包含关键字“狗”时,顶级“动物”会自动展开。
好的,我使用以下方法解决了我的问题:
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; if ((false !== strpos($url,'dog')) && ($li->hasClass('animals'))){ $li->attr('class', sprintf('level1 animals active'));}
就像我在 url 中存在关键字 dog 时需要的那样,“动物”菜单设置为活动状态。