页面进入,直接进入某个选项卡选项卡

/*页面进入,直接进入某个选项卡选项卡*/
function showTab(){
    $('.acticle_tip span').click(function(){
        var shownums=$(this).index();
        var selchind=$('.acticle .acticle_cont').eq(shownums);
        $(this).addClass('tip_on').siblings('').removeClass('tip_on')
         window.location.hash = "#" + shownums;
        $('.acticle .acticle_cont').eq(shownums).attr('class','acticle_cont visible').siblings('.acticle_cont').attr('class','acticle_cont hidens');
        $('select:visible').select2({
        placeholder: "请选择"
        });
    }).filter(":eq("+window.location.hash.substr(1)+")").click();
}

 

posted @ 2016-02-17 10:50  XINYUHAI77  阅读(262)  评论(0编辑  收藏  举报