Make clicked tab active in Bootstrap

后端 未结 10 620
傲寒
傲寒 2021-01-31 09:02

I am using Django and integrated Bootstrap with Django. Here is my HTML code for the navigation bar:

10条回答
  •  时光说笑
    2021-01-31 09:33

    I recently ran into this problem and tried every solution I could find. Eventually, I came to this. This example assumes the path to this content is yoursite.com/about Give your link an id.

  • About
  • var path = $(location).attr('pathname') var pa = path.split("/") $('#'+pa[1]).tab('show')

提交回复
热议问题