JQuery就绪功能无法在wordpress中运行

时间:2015-03-22 07:47:35

标签: jquery wordpress

我将wsress中的js文件排入队列并加载文件并使用本机js代码但jQuery就绪无法正常工作

 alert('working');  
jQuery(document).ready(function(){  
   alert('not working');  
});  

网站网址 http://typingbooster.expotech.co.in/
请查看源文件custom.js

3 个答案:

答案 0 :(得分:1)

在wordPress环境中,请使用:

jQuery(document).ready(function($){

});

答案 1 :(得分:0)

你确定jQuery已经入队吗?您可以通过将其添加到您的functions.php:

来确保它

add_action('init', 'load_jquery_scripts', 0);
function load_jquery_scripts() {
	wp_enqueue_script('jquery');
}

答案 2 :(得分:0)

window.addEventListener("load", function(){
    alert('works');
});

希望这对你有用!