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

前端 未结 24 1817
夕颜
夕颜 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:09

    I would suggest you use the code provided by Bootstrap authors on their issue tracker on GitHub:

    var hash = location.hash
      , hashPieces = hash.split('?')
      , activeTab = $('[href=' + hashPieces[0] + ']');
    activeTab && activeTab.tab('show');
    

    You can find on the link to the issue more information about why they didn't choose to support that.

提交回复
热议问题