一个页面跳转到另一个页面的tab选项卡的指定页上

a页面是一个tab切换,b页面同样也是一个tab切换,目前想实现从a页面的tab“B”跳转的b页面的tab“B”

a页面代码:



b页面代码(notice.html

<script type="text/javascript">
    $(function(){
        var hash=window.location.hash||'';
        if(hash=='#company'){
            
            $(".company_content").show();
            $(".department_Box").hide();
        }else if(hash=='#department'){
            $('.company_notice_a').removeClass('current');
            $('.department_notice_a').addClass('current');
            $(".company_content").hide();
            $(".department_Box").show();
        };
        $(".notice_nav_a a").click(function(){
            $(this).addClass("current").siblings().removeClass("current");                    
        });
        $(".company_notice_a").click(function(){
            $(".company_content").show();
            $(".department_Box").hide();
        });//公司公告
        $(".department_notice_a").click(function(){
            $(".company_content").hide();
            $(".department_Box").show();
        });//部门公告
        $(".company_content .selectAll").click(function(){
            $(".company_content a").removeClass('color');
        });
        $(".department_Box .selectAll").click(function(){
            $(".department_Box a").removeClass('color');
        });
    });
script>



   
       
           
           
           
       
           
           
           
       
   
标题接收时间操作
       
北京昌佳泵业有限公司北京昌佳泵业有限公司“企业信息待审核2018-05-08-12:00:56
                查看
           

   

       

           
           
       

       

            共有10条待办事项,
            3条未读
           

               
                <
                1
                >
               
           

       

   




   
       
           
           
           
       
           
           
           
         
   
标题接收时间操作
       
中标网再中5亿啥啥啥啥项目,呵呵啥啥,呵呵2018-05-08-12:00:56
                查看
           

   
   

       

           
           
       

       

            共有10条待办事项,
            3条未读
           

               
                <
                1
                >
               
           

       

   

            

 

转载于:https://www.cnblogs.com/zhangjianzhen/p/9065837.html

你可能感兴趣的:(一个页面跳转到另一个页面的tab选项卡的指定页上)