jquery将函数更改为插件的代码

时间:2010-03-13 07:06:48

标签: jquery-plugins

非常感谢帮助。什么是将此功能更改为插件的正确标记。我试过了,但不能让它起作用。

(文档)$。就绪(函数(){
$('ul.tabNav a')。click(function(){
var curChildIndex = $(this).parent()。prevAll()。length + 1;
。$(本).parent()父()儿童( '电流 ')removeClass(' 当前');
$(本).parent()addClass( '当前');
     $(this).parent()。parent()。next('。tabContainer')。children('。current')。slideUp('fast',function(){
$(本).removeClass( '当前');
$(this).parent()。children('div:nth-​​child('+ curChildIndex +')')。slideDown('normal',function(){
$(本).addClass( '当前');
});
});
返回true;
});
});

1 个答案:

答案 0 :(得分:0)

 (function($) {

    jQuery.fn.pluginName = function() {  

             return this.each(function() {

                       Your Code;
      });
    };
 })(jQuery);