码迷,mamicode.com
首页 > Web开发 > 详细

用jquery编写的tab插件

时间:2014-12-26 16:03:56      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

用jquery编写的tab插件

 

技术分享

源码

$.fn.ss_tab = function (options) {
    var box = $(this);
    var btns = $(this).find("ul:first > li"); //console.log($(btns).length);
    var contents = $(this).find("ul").eq(1).children("li"); //console.log($(contents).length);

    $(btns).eq(0).addClass("active");
    $(contents).hide();
    $(contents).eq(0).show();

    $(this).find("ul:first > li").click(function () {
        $(this).addClass("active").siblings().removeClass("active");
        var index = $(btns).index($(this)); //console.log(index);
        //$(contents).hide();
        $(contents).eq(index).show().siblings().hide();
    });
};

 

用jquery编写的tab插件

标签:

原文地址:http://www.cnblogs.com/haiconc/p/4186713.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!