码迷,mamicode.com
首页 > 其他好文 > 详细

多个tab切换传参

时间:2015-12-09 13:38:07      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:

var _ =peopleslive.h5;
    _.main=function(){
        //集赞排名1
        $(‘#tab1 .tab_nav‘).find(‘li‘).click (function() {
            tabPage($(‘#tab1‘),$(this));
        });

        //集赞排名2
        $(‘#tab2 .tab_nav‘).find(‘li‘).click (function() {
            tabPage($(‘#tab2‘),$(this));
        });

        function tabPage(obj,obj2) {
            var index = obj2.index();
            var current = obj.find(‘.page_current‘).index();
            if(index != current) {
                obj2.addClass(‘on‘).siblings(‘li‘).removeClass(‘on‘);
                obj.find(‘.tab_page‘).eq(index).addClass(‘page_current‘).siblings(‘.tab_page‘).removeClass(‘page_current‘);
            }

        }
    };

 

多个tab切换传参

标签:

原文地址:http://www.cnblogs.com/djdliu/p/5032307.html

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