jQuery 和其他库的包含顺序正确吗?

发布于 2024-08-26 17:39:38 字数 169 浏览 3 评论 0原文

我有一个使用 MooTools 和 jQuery 的 WordPress 主题。我使用 jQuery noConflict 来避免与其他 JS 库发生冲突;这对我没有帮助。

有人可以帮助我按照正确的顺序在我的 Wordpress 主题中包含 JS 库吗?

提前致谢。

I have a Wordpress theme that uses MooTools and jQuery. I use jQuery noConflict to avoid conflicts with other JS libraries; this didn't help me.

Can someone help me with the right order of including JS libraries on my Wordpress theme?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

脱离于你 2024-09-02 17:39:38

您需要做的就是在 jquery 代码之前添加此内容:

jQuery.noConflict();

并将所有 JQuery $ 替换为 jQuery。例如 :

  jQuery(document).ready(function($) {
    // Code that uses jQuery's $ can follow here.
  });
  // Code that uses other library's $ can follow here.

What you need to do is add this before your jquery code :

jQuery.noConflict();

and replace all JQuery $ by jQuery. For example :

  jQuery(document).ready(function($) {
    // Code that uses jQuery's $ can follow here.
  });
  // Code that uses other library's $ can follow here.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文