sIFR 3+li 菜单
我正在尝试制作一个使用 sIFR 的 li-menu。 我想做的是让 sIFR 取代菜单的第一级,但不取代第二级。 菜单只有两层。
您可以在以下位置找到菜单: www.norrlandsoperan.se/default.asp?id=10135
如果您能给我一个关于如何完成这项工作的提示,我将非常感激。
非常感谢。
问候/埃里克·温伯格
I'm trying to make a li-menu that use sIFR. What I wanna do is to make sIFR replace the first level of the menu but not the second level. The menu is only in two levels.
You can find the menu at: www.norrlandsoperan.se/default.asp?id=10135
I would really appreciate if you could make me a hint on how to make this work.
Many thanks.
Regards / Erik Wennberg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果子菜单包含在父
中,则需要将父
中。
元素。 然后使用像ul#menu > 这样的选择器 力> span
仅替换这些元素。If the sub menu is contained within the parent
<li>
, you need to wrap the text in the parent<li>
in a<span>
element. Then use a selector likeul#menu > li > span
to replace just those elements.指定一个选择器,例如
ul#menu > li
仅获取第一层。 我认为这应该与 sIFR 自己的选择器引擎一起使用,否则使用 jQuery(您可以在 sIFR 文档中找到如何更改它。)
Specify a selector like
ul#menu > li
to only get the first level of<li>
s. I think that should work with sIFRs own selector engine, otherwise use jQuery (you can find in the sIFR documentation how to change it.)