Prototype 和 jquery 插件不能一起工作
请帮助我,我花了 1.5 天的时间试图解决这个问题,我在互联网上寻找了各种解决方案,但似乎没有一个有效,至少对我来说是这样。我一直在使用它
jQuery.noConflict();
var $j = jQuery;
来避免 jquery 与其他库发生冲突,但现在它不起作用与原型。我正在拉头发,对此感到非常恼火。请有人帮忙。 您对我来说就是上帝,非常感谢您的帮助。
Please help me i have lost 1.5 days trying to fix this, i have looked for various solutions on the internet and none seems to work,atleast for me.I have been using
jQuery.noConflict();
var $j = jQuery;
to avoid jquery conflicting with other libraries successfully, but now it wont work with prototype.I am pulling hairs and getting very annoyed at this.Someone out there please help.
You are a God to me and your help is very much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用这个包装你的所有 jQuery:
并且你还需要在该代码之外添加 jQuery.noConflict() 。
Wrap all of your jQuery with this:
And you also need to have jQuery.noConflict() outside of that code.