jQuery 滑块和 jQuery 灯箱不能一起工作
我有一个 jquery 滑块和一个 jquery 灯箱。我希望它们都能在我的网站上同时工作。但我收到错误。那么有什么办法可以做到吗?
http://www.highesthits.com/wp-content/uploads /2011/02/fbox.js
http ://nivo.dev7studios.com/scripts/nivo-slider/jquery.nivo.slider.pack.js
I have a jquery slider and a jquery lightbox. I want both of them to work simultaneously in my site. But i am getting an error. So is there any way to do it?
http://www.highesthits.com/wp-content/uploads/2011/02/fbox.js
http://nivo.dev7studios.com/scripts/nivo-slider/jquery.nivo.slider.pack.js
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
jQuery 和 Lightbox 都使用 $.
要同时使用两者而不发生冲突,请使用以下代码将 jQuery 中的 $ 更改为其他内容:(请注意 $jQ 可以是任何内容)
现在,在编写 jQuery 文件时,在通常使用 $ 的地方使用 $jQ
Both jQuery and Lightbox use $.
To use both together without conflict, change the $ in jQuery to something else using the following code: (note that $jQ can be anything)
Now, when writing your jQuery file use $jQ wherever you would normally use $
这是对我有用的:
插件:
我通过删除第 32 行使其工作:
来自位于 \plugins\nivo-slider-for-wordpress\ 的 nivoslider4wp-shop.php
我希望有帮助。
Here is what worked for me:
Plugins:
I made it work by removing line 32:
from nivoslider4wp-shop.php located in the \plugins\nivo-slider-for-wordpress\
I hope that helps.