jQuery 和 MooTools 与 jQuery 插件冲突
我必须在一个页面中同时使用 MooTools 和 jQuery。我正在使用 featureCarousel jQuery 滑块插件。 jQuery 和 MooTools 之间存在冲突。但即使使用 jQuery.noConflict() 函数,动画也不能完美运行。
您可以在此处查看该问题的现场演示。
请让我知道如何解决这个问题。
I have to use both MooTools and jQuery in a single page. I am using the featureCarousel jQuery slider plugin. There is a conflict between jQuery and MooTools. But the animation is not working perfectly even with jQuery.noConflict()
function.
You can see the live demo of the issue here.
Please let me know how can I fix this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试加载 JQuery 并在加载 MooTools 之前调用 noConflict()。否则,MooTools 将在您调用 noConflict() 之前使用 $ 命名空间。
看起来您在示例中根本没有使用 MooTools。而且这个动画在 Chrome 上似乎对我来说工作得很好。
Try loading JQuery and call noConflict() before loading the MooTools. Otherwise MooTools will use the $ namespace before you can call noConflict().
It doesn't look like you're using MooTools at all in the example. Also the animation seems to be working fine for me on Chrome.