我正在使用基于AJAX的Wordpress模板(自定义),但在让jQuery正常运行时遇到了一些问题。
我已经把所有的东西(按正确的顺序)排好了队,在某种程度上它确实起了作用,但我发现自己不得不写jQuery(\'...
与速记相反$(...
每次我想添加新的脚本片段时。我做错什么了吗?请参阅下面我的(精简)自定义JS文件;
function customThemeFunctions(){
var windowHeight = jQuery(window).height();
jQuery(\'.full-height\').css({\'height\' : windowHeight - 60});
jQuery(\'.full-height-min\').css({\'min-height\' : windowHeight - 60});
}
jQuery( document ).ready(function($){
customThemeFunctions();
});
jQuery( document ).ajaxSuccess(function($){
customThemeFunctions();
});