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

tab带url直接访问

时间:2015-04-02 15:02:12      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

function showTab() {
    $(".tab-nav li").click(function(){
        var self = $(this), target = self.data("tab");
        self.addClass("current").siblings(".current").removeClass("current");
        window.location.hash = "#" + target.substr(3);
        $(".tab-pane.in").removeClass("in");
        $("." + target).addClass("in");
    }).filter("[data-tab=tab" + window.location.hash.substr(1) + "]").click();
}

  

tab带url直接访问

标签:

原文地址:http://www.cnblogs.com/decsev/p/4386814.html

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