如何使用 $.noConflict() 修复 Lightbox2 问题?
我已将图像导入到我的网站。我想用 lightbox2 打开这些图像。我已经安装了 lightbox2-drupal 模块,它可以在我的首页 (www.chirowijkoersel.be) 上运行,但在我导入图像的页面上不起作用。
Lightbox 可以与 Opera 配合使用。我还注意到 lightbox2 模块为 Opera 中的图像以及其他所有浏览器的首页上的图像添加了一个类。
链接:
编辑: 我做了一些研究,我认为问题是由多次使用 $ 引起的。我可以使用 $.noConflict() 来解决这个问题。但我需要把它放在哪里?
I've imported images to my site. I want to open these images with lightbox2. I've installed the lightbox2-drupalmodule and that works on my frontpage (www.chirowijkoersel.be), but it doesn't work on the pages where I imported images.
Lightbox does work with Opera. I've also noticed that the lightbox2-module adds a class to the images in Opera and on the frontpage with every other browser.
Links:
Edit:
I've done some research, and I think the problem is caused by the multiple use of $. I can solve this by using $.noConflict(). But where do I need to put this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
封装你的 javascript,并使用自调用函数
Wrap of you javascript, and use self invoking functions
可能是javascript冲突?
it could be javascript conflicts ?
在导入 jQuery 之后,您可以将 $.noConflict() 放入脚本标记内。因此,如果您有类似以下内容:
已经,您只需这样做:
希望有帮助。
You would put the $.noConflict() inside a script tag, right after you import jQuery. So if you have something like:
already, you'd just do:
Hope that helps.