引入jQuery但是报错 $ is not a function -修改方式

有遇到引入了jQuery,但是报错$ is not a function 的情况。

我写的jQuery 是这样的:

[cc lang=”php”]
$(document).ready(function(){

// jQuery code is in here

});
[/cc]

报错提示:TypeError: $ is not a function

后来改成这样:

[cc lang=”php”]

(function($){

// jQuery code is in here

})(jQuery);
[/cc]

上面的方式就不报错了。
之前用1.11.0版本时没有出现上面的错误,用了1.11.3就出现上面的错误了。

有的网友说可以改成下面那样:

[cc lang=”php”]

jQuery(document).ready(function($){
  // jQuery code is in here
});

[/cc]

原创文章,作者:老D,如若转载,请注明出处:https://laod.cn/2194.html

(0)
上一篇 2016-06-14
下一篇 2016-06-18

相关推荐

发表回复

登录后才能评论

评论列表(2条)

  • 晓椴
    晓椴 2016-06-17 19:10

    jQuery(function($){
    // jQuery code is in here
    });
    简写形式

  • Bill
    Bill 2016-06-16 14:34

    来一发~