$ is not defined
当使用wordpress时,我们自己写的jquery在运行时出现这种情况:
$ is not defined 或者 JQuery is not defined
不知道为什么在wordpress里面冲突,各种查资料,最后我是这样解决的:
在自己写的jquery上面包裹一层就行了:
快点是去试试,终于可以了;
$ is not defined 或者 JQuery is not defined
不知道为什么在wordpress里面冲突,各种查资料,最后我是这样解决的:
在自己写的jquery上面包裹一层就行了:
(function($) {
function yourfunc(){
$('.info').html('');
}
})(jQuery);
(function($) {
})(jQuery);
这么一层包裹起来,你的jquery就可以使用了;
快点是去试试,终于可以了;