如果我实现以下 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;
}
});
});
WordPress中的错误
解析错误:语法错误,意外的 '$',在第 12 行的 D:\Hosting\12006171\html\wp-content\themes\html5blank-master\functions.php 中需要 '&' 或 T_VARIABLE