jQuery 工具 - 幻灯片和幻灯片选项卡链接问题

发布于 2024-09-13 23:07:38 字数 226 浏览 4 评论 0原文

我正在使用 jQuery Tools Slideshow &我正在从事的项目的选项卡。现在一切都运转良好并且应该如此。目前,每个选项卡 (li) 都会更改 #slide div 中的图像。我遇到的问题是,每个 li(阅读更多按钮)内都有一个外部链接,它链接到网站中的另一个页面。由于该链接位于每个 li 内部,因此它不起作用。

有其他人遇到过这个问题或者对如何让链接在选项卡内工作有什么建议吗?任何帮助将不胜感激。

I am using jQuery Tools Slideshow & Tabs for a project I am working on. Right now everything works great and as it should. Currently each tab (li) is what changes the images in the #slide div. The problem I am having is that I have an external link inside each li (Read More Button) which links to another page in the site. Because the link resides inside each li, it doesn't work.

Has anybody else come across this problem or have any suggestions on how to get links to work inside the tabs? Any help would be appreciated.

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

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

发布评论

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

评论(1

只涨不跌 2024-09-20 23:07:38

没关系,我自己想出来了。我添加这个是为了指定 li 中的“阅读更多”链接:

$("#tabs li > span").click(function() {
  window.location = $(this).find("a").attr("href");
  $("#slides > div").fadeTo('fast', 1);
});

我添加了 fadeTo ,因为在加载下一页时,它的淡入效果很奇怪,这样它就可以在下一页加载时使其 100% 不透明度。

可能有更好的方法,但这对我来说非常有效。

Nevermind, I figured it out myself. I added this to specify the "read more" link inside the li:

$("#tabs li > span").click(function() {
  window.location = $(this).find("a").attr("href");
  $("#slides > div").fadeTo('fast', 1);
});

I added the fadeTo because while the next page was loading, it was fading weird, this way it makes it 100% opacity while the next page loads.

There might be a better way for this but this worked perfectly for me.

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