Twitter Bootstrap Tabs: Go to Specific Tab on Page Reload or Hyperlink

前端 未结 24 1824
夕颜
夕颜 2020-11-22 04:57

I\'m developing a web page in which I\'m using Twitter\'s Bootstrap Framework and their Bootstrap Tabs JS. It works great except for a few minor issues, one of which is I do

24条回答
  •  滥情空心
    2020-11-22 05:27

    you could trigger a click event on the corresponding tab link:

    $(document).ready(function(){
    
      if(window.location.hash != "") {
          $('a[href="' + window.location.hash + '"]').click()
      }
    
    });
    

提交回复
热议问题