最近,我根据 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>