jQuery和其他库正确的顺序包括在内?

时间:2010-03-28 23:19:26

标签: jquery wordpress wordpress-theming

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

有人可以帮我解决在我的Wordpress主题上包含JS库的正确顺序吗?

提前致谢。

1 个答案:

答案 0 :(得分:2)

您需要做的是在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.