(function($) {
$(document).ready(function(){
/*$(\'body\').css(\'position\',\'relative\');
$(\'body\').animate({\'left\':\'-9999px\'},3000);*/
alert(\'hello\');
});
}(jQuery));
也尝试过
$(document).ready(function(){
/*$(\'body\').css(\'position\',\'relative\');
$(\'body\').animate({\'left\':\'-9999px\'},3000);*/
alert(\'hello\');
});
萤火虫跳跃:
jQuery is not defined
[Detener en este error] }(jQuery));
最合适的回答,由SO网友:chrisguitarguy 整理而成
您确定jQuery库已加载到您的页面上吗?您得到的错误暗示它不是。查看源代码并搜索jQuery。
然后尝试在函数中的某个位置添加此项。php(或插件)文件,并查看脚本是否正常工作。
<?php
add_action( \'wp_enqueue_scripts\', \'wpse30127_enqueue\' );
function wpse30127_enqueue()
{
wp_enqueue_script( \'jquery\' );
}