实现jquery函数后出现奇怪的错误

时间:2013-11-14 15:54:06

标签: jquery wordpress

如果我实现以下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

1 个答案:

答案 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;
        }
    });     
}($);