Twitter bootstrap tabs and javascript events

后端 未结 7 1518
悲哀的现实
悲哀的现实 2021-01-30 05:15

I am using twitter bootstrap for a project - in particular its tab functions (http://twitter.github.com/bootstrap/javascript.html#tabs)

Now I have this tablist and when

7条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-30 05:43

    With Twitter Bootstrap version 2 the documented way to subscribe to tab change events is

    $('a[data-toggle="tab"]').on('shown', function (e) {
      e.target // activated tab
      e.relatedTarget // previous tab
    })
    

    The latest documentation on Twitter Bootstrap tab events can be found at http://getbootstrap.com/javascript/#tabs

提交回复
热议问题