非常感谢帮助。什么是将此功能更改为插件的正确标记。我试过了,但不能让它起作用。
(文档)$。就绪(函数(){
$('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;
});
});
答案 0 :(得分:0)
(function($) {
jQuery.fn.pluginName = function() {
return this.each(function() {
Your Code;
});
};
})(jQuery);