Prototype 和 jquery 插件不能一起工作

发布于 2024-09-15 01:19:00 字数 223 浏览 3 评论 0原文

请帮助我,我花了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枉心 2024-09-22 01:20:07

用这个包装你的所有 jQuery:

(function($){

})(jQuery);

并且你还需要在该代码之外添加 jQuery.noConflict() 。

Wrap all of your jQuery with this:

(function($){

})(jQuery);

And you also need to have jQuery.noConflict() outside of that code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文