0

最近,我根据 nettuts 教程制作了一个 lavalamp 插件,它在我的其他网站上运行良好。我想在我的其他网站上重用它,但我收到了这个错误:

未捕获的类型错误:无法读取未定义的属性“左侧”

我是 jQuery 的初学者,我真的不知道如何修复它。

代码:

(function($){

    $.fn.lavylamp = function(options)
    {

        options = $.extend({
            overlay: 20,
            speend: 300,
            reset: 1500,
            color: '#78C2FF',
            easing: 'easeOutExpo',
        }, options);

        return this.each(function(){

            var nav = $(this),
            currentPageItem = $('#active', nav),
            cursor,
            reset;

            $('<li id="blob"></li>').css({
                width: currentPageItem.outerWidth(),
                left: currentPageItem.position().left,
                top: currentPageItem.position().top,
                backgroundColor: options.color,
            }).appendTo('#nav');

            blob = $('#blob', nav);

            $('li', nav).hover(function(){

                blob.animate(
                {
                    left: $(this).position().left,
                    width: $(this).width()
                },
                {
                    duration: options.speed,
                    easing: options.spped,
                    queue: false
                }
                );

            }, function(){
                clearTimeout(reset);

                blob.stop().animate({
                    left: $(this).position().left,
                    width: $(this).width()
                }, options.speed);

                reset = setTimeout(function(){
                    blob.stop().animate({
                        width: $(this).outerWidth(),
                        left: $(this).position().left,
                    }, options.speed);
                }, options.reset);

            });

        });

    }

})(jQuery);

该错误适用于这部分:

$('<li id="blob"></li>').css({
                width: currentPageItem.outerWidth(),
                left: currentPageItem.position().left,
                top: currentPageItem.position().top,
                backgroundColor: options.color,
            }).appendTo('#nav');

有人可以给我一个提示吗?

编辑

HTML

<ul id="nav" class="unstyled inline">
            <li><a href="">Start up Business</a></li>
            <li><a href="industries.php=2">Entrepreneurial & Familit Owned Business</a></li>
            <li><a href="">Hight Net Worth Individuals</a></li>
            <li><a href="careers.php=1">Professionlas</a></li>
            <li><a href="industries.php=8">Real Estate Professionlas</a></li>
            <li><a href="industries.php=7">Not For Profit</a></li>
        </ul>
4

2 回答 2

0

可能是,您想选择一个元素,而不是两个?

currentPageItem = $('#active', nav)

选择所有 id="active" 和 nav 也。

于 2013-06-11T06:54:03.020 回答
0

只是猜测,但我怀疑:

 currentPageItem = $('#active', nav),

应该:

 currentPageItem = $('.active', nav),

#用于按 ID 选择,.用于按类别选择。由于 ID 是唯一的,因此在每个元素中搜索不同的 ID 是没有意义的active,这就是类的用途。

于 2013-06-11T06:32:58.120 回答