jQuery和其他图书馆的权利,以包括哪些内容?(jQuery,and other library

2019-10-20 17:50发布

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

有人可以帮助我,包括我的WordPress的主题JS库的正确顺序?

提前致谢。

Answer 1:

什么,你需要做的是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.


文章来源: jQuery,and other library right order to include?