如果我实现以下jQuery(对于弹出页脚)
,我会收到以下错误jQuery(function($) {
var open = false;
$('#footerSlideButton').click(function () {
if(open === false) {
$('#footerSlideContent').animate({ height: '300px' });
$(this).css('backgroundPosition', 'bottom left');
open = true;
} else {
$('#footerSlideContent').animate({ height: '0px' });
$(this).css('backgroundPosition', 'top left');
open = false;
}
});
});
wordpresss错误
解析错误:语法错误,意外'$',期待'&'第12行的D:\ Hosting \ 12006171 \ html \ wp-content \ themes \ html5blank-master \ functions.php中的T_VARIABLE
答案 0 :(得分:0)
你没有通过$。
即
function($) {
var open = false;
$('#footerSlideButton').click(function () {
if(open === false) {
$('#footerSlideContent').animate({ height: '300px' });
$(this).css('backgroundPosition', 'bottom left');
open = true;
} else {
$('#footerSlideContent').animate({ height: '0px' });
$(this).css('backgroundPosition', 'top left');
open = false;
}
});
}($);