中的 onclick 操作使用外部链接" />

Jquery 工具幻灯片插件:禁用
中的 onclick 操作使用外部链接

发布于 2024-10-31 18:24:53 字数 664 浏览 4 评论 0 原文

我是 jquery 新手,在使用 Jquery 工具幻灯片插件时遇到问题。 有人可以帮助我吗?

就我而言,我在一个名为(图像如下例所示)的 html 块中有许多链接

http: //flowplayer.org/tools/demos/tabs/slideshow.htm

我想禁用将我的 div 传递到下一个的 onclick 函数。因为在我的 div 中我有很多外部链接,我想允许用户单击我的链接。

最后,请有人告诉我该怎么做。

提前致谢。

帕特里克

$(".slidetabs").tabs(".images > div", {

    // enable "cross-fading" effect
    effect: 'fade',
    fadeOutSpeed: "slow",

    // start from the beginning after the last tab
    rotate: true

// use the slideshow plugin. It accepts its own configuration
}).slideshow();

I'm new to jquery and i got a problem to use Jquery Tools Slideshow Plugin.
Could someone help me please.

For my case i have many link in a html block called (image like the example bellow)

http://flowplayer.org/tools/demos/tabs/slideshow.htm

i would like to disable function onclick that passe my div to the next one. Because in my div i have many external links and i would like to allow the user to click on my links.

Finally, could someone tell me how to do that please.

Thanks in advanced.

Patrick

$(".slidetabs").tabs(".images > div", {

    // enable "cross-fading" effect
    effect: 'fade',
    fadeOutSpeed: "slow",

    // start from the beginning after the last tab
    rotate: true

// use the slideshow plugin. It accepts its own configuration
}).slideshow();

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

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

发布评论

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

评论(3

橙幽之幻 2024-11-07 18:24:53
.slideshow({clickable:false});

您可以将其作为参数传递到幻灯片中。

.slideshow({clickable:false});

You can pass it into slideshow as a param.

梨涡 2024-11-07 18:24:53
$(".slidetabs").tabs(".images > div").unbind("click");

或者,如果您只想将其用于包含链接的内容:

$(".slidetabs").tabs(".images > div").has("a").unbind("click");
$(".slidetabs").tabs(".images > div").unbind("click");

Or if you only want it for the ones containing links:

$(".slidetabs").tabs(".images > div").has("a").unbind("click");
轮廓§ 2024-11-07 18:24:53

我必须将上面的两个答案结合起来才能使事情正常进行。

I had to combine both answers above to get things to work.

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