Twitter Bootstrap - Tabs - URL doesn't change

前端 未结 15 1613
长情又很酷
长情又很酷 2020-11-28 18:53

I\'m using Twitter Bootstrap and its \"tabs\".

I have the following code:

15条回答
  •  北荒
    北荒 (楼主)
    2020-11-28 19:29

    Most simple, assuming you're using the documented data-toggle="tab" syntax described here:

    $(document).on('shown.bs.tab', function(event) {
      window.location.hash = $(event.target).attr('href');
    });
    

提交回复
热议问题