jQuery循环拦截点击

发布于 2024-09-07 02:00:50 字数 822 浏览 2 评论 0原文

我正在使用 jquery Cycle 创建特色内容滑块。在我的寻呼机中,我有每个帖子的图像和永久链接的链接。我无法链接到该页面,但我希望这张图片能够让您了解我在做什么:

alt text

我的问题是,当我单击右侧导航中的永久链接时,它们不会打开。链接形成正确,我可以右键单击并在新窗口中打开。看起来滑块正在将我的点击拦截为 JS 点击,而不是点击 acutaly href 链接。

有人遇到过这个问题吗?

这是我的JS

    jQuery('#slideWrap').cycle({
    speed:       200, 
    timeout:     0, 
    pager:      '#featuredNav ul', 
    pagerEvent: 'mouseover',
    pagerAnchorBuilder: function(idx, slide) { 
    
    return '<li><img src="' + jQuery(slide).find(".featuredSlideImage > img").attr("src")  + '" height="50" width="75" />' + jQuery(slide).find(".featuredSlideDesc > h3").html()  + ' </li>'; 
    
} 
});     

I'm using jquery Cycle to create a featured content slider. In my pager I have an image from each post and a link to the permalink. I can't link to the page, but I hope this image will give an idea of what I am doing:

alt text

My problem is that when I click the permalinks in the right nav, they do not open. The links are formed properly and I'm able to right click and open in a new window. It seems like the slider is intercepting my click as a JS click and not a click on the acutaly href link.

Any one experience this problem?

here is my JS

    jQuery('#slideWrap').cycle({
    speed:       200, 
    timeout:     0, 
    pager:      '#featuredNav ul', 
    pagerEvent: 'mouseover',
    pagerAnchorBuilder: function(idx, slide) { 
    
    return '<li><img src="' + jQuery(slide).find(".featuredSlideImage > img").attr("src")  + '" height="50" width="75" />' + jQuery(slide).find(".featuredSlideDesc > h3").html()  + ' </li>'; 
    
} 
});     

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

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

发布评论

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

评论(1

昔梦 2024-09-14 02:00:50

http://jquery.malsup.com/cycle/options.html,我建议尝试以下选项:

allowPagerClickBubble

并将其设置为 true 而不是默认值 false。

From http://jquery.malsup.com/cycle/options.html, I would suggest trying the option:

allowPagerClickBubble

And setting it to true instead of its default, false.

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