我创建了一个标签滑块插件,我在我的页面中使用它。
但是当我想使用它两次时,它只适用于最后一次。
这是代码:
$.fn.tabbed = function(){
height= $(window).height();
children= this.children().eq(0).find('li');
length= children.length;
width= $('.content li').width();
ulwidth=length*width;
ul= this.find("ul.content");
ul.css('width',ulwidth);
children.click(function(){
margin=$(this).index()*width;
ul.animate({'margin-left':-margin},1000);
});
}