0

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

4

1 回答 1

0

你没有传递 $ 。

IE

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;
        }
    });     
}($);
于 2013-11-14T16:00:35.257 回答