多个tab切换传参

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');
            }

        }
    };

 

posted @ 2015-12-09 11:37  djdliu  阅读(888)  评论(0编辑  收藏  举报