Control multiple tab-contents with one nav-tabs

前端 未结 4 1833
悲哀的现实
悲哀的现实 2020-12-05 10:54

I have a regular Twitter Bootstrap 3 tab. What I want to do is to control is to control multiple
tab-content container with one nav-tabs elemen

4条回答
  •  一生所求
    2020-12-05 11:30

    ID must be unique.

    Read Two HTML elements with same id attribute: How bad is it really?

    problem with your code

    Two elements with id home , profile and myTabContent.

    Content 1.

    Content 2.


    Content 1.

    Content 2.

    and you are giving href="#home" which will target the first element with id.Not all elements with id.

    
    

提交回复
热议问题