Accordion 和 jQueryCycle 阻止 href 工作

发布于 2024-08-19 20:05:33 字数 343 浏览 10 评论 0原文

查看我正在开发的此网站

这个想法如下:

- 幻灯片放映应该旋转 - 这有效

- 当将鼠标悬停在右侧菜单上时,会出现相应的幻灯片 - 这有效

- 另外,当悬停时导航应展开以显示简短说明 - 这有效

- 当点击汽船、飞机、无人机或“查看”链接时,它会将您带到该页面 - 这是行不通的。我确信这里发生的事情是 JavaScript 正在努力解决这个问题,因为禁用一个链接可以使链接正常工作,而重新启用则会破坏它。

非常感谢您的帮助,

Checkout this site that I'm working on.

The idea is as follows:

-That the slide show is supposed to rotate - this works

-When hovering over the menu on the right the appropriate slide appears - this works

-Also when hovering the nav should expand to show a brief description - this works

-When clicking on Airboat, Aircraft, UAV, or the "view" link it then takes you to that page - this doesn't work. I'm sure what's happening here is that the javascripts are fighting it out, as disabling one makes the links work, reenabling breaks it.

Your help is greatly appreciated,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感情旳空白 2024-08-26 20:05:33

尝试使用这个:

 return '#nav li:eq(' + (idx) + ') > a';}

而不是

return '#nav li:eq(' + (idx) + ') a';}

在你的循环插件中。使用直接后代选择器而不是后代选择器将使其无法匹配页面锚点的手风琴中包含的链接。

Try using this:

 return '#nav li:eq(' + (idx) + ') > a';}

instead of

return '#nav li:eq(' + (idx) + ') a';}

in your cycle plugin. Using the direct descendent selector instead of the descendent selector will keep it from matching on the links contained in the accordion for the page anchors.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文