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.
我在 WordPress 主题中使用 Superfish v1.6.2 作为下拉菜单。菜单工作正常,但包含子菜单的顶级菜单链接不工作/可点击。
在那里,您会注意到“投资组合”和“示例页面”链接不起作用。请帮助我,我该如何解决?
提前致谢
对于 jquery 菜单栏的相同问题,我使用了类似以下的内容。也许这也可以帮助你。
$("#menu li a").click(function () { window.location = $(this).attr('href'); return false; });
本质上,这从顶级菜单项链接中获取位置并导航到它。“return false”取消了对顶层下弹出菜单的进一步处理。
祝你好运。