有遇到引入了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
评论列表(2条)
jQuery(function($){
// jQuery code is in here
});
简写形式
来一发~