Jquery 工具幻灯片插件:禁用 中的 onclick 操作使用外部链接
我是 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();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web
技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我是 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();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的
隐私政策
了解更多相关信息。 单击
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文
发布评论
评论(3)
您可以将其作为参数传递到幻灯片中。
You can pass it into slideshow as a param.
或者,如果您只想将其用于包含链接的内容:
Or if you only want it for the ones containing links:
我必须将上面的两个答案结合起来才能使事情正常进行。
I had to combine both answers above to get things to work.