Bootstrap shown.bs.tab event not working

后端 未结 5 811
臣服心动
臣服心动 2021-02-06 04:42

I\'m using the Flexy template (using bootstrap) and I can\'t get the shown.bs.tab event on tab to work.

I\'ve managed to make it work on JSFiddle.

Here is the co

5条回答
  •  [愿得一人]
    2021-02-06 05:30

    If the Tab is dynamic in anyway try using

    $(document).on('shown.bs.tab', 'a[data-toggle="tab"]', function (e) {
    
            alert(e.target.href);
        })
    

提交回复
热议问题