0
當我點擊一個標籤時/#名稱改變。但是,突出顯示的選項卡指示它是活動選項卡不會更改。內容也不會更改,並且繼續顯示與默認選項卡關聯的內容。爲什麼活動標籤在我的頁面上沒有改變?
doctype html
html
head
title Bootstrap Tab this Database
script(src="/socket.io/socket.io.js")
script(src="client.js")
link(rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css")
body
div.container
nav.navbar.navbar-default.navbar-inverse
div.container-fluid
div.navbar-header
button(type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false")
span.sr-only
<!-- Draw two bars in navbar button when the window is small -->
span.icon-bar
span.icon-bar
ul.nav.navbar-nav
<!-- Setup the default active tab -->
li.active
a(href="#db1Tab", data-toggle="tab") DB1
<!-- The tabs on standby -->
li
a(href="#db2Tab", data-toggle="tab") DB2
div.tab-content
div(id="db1Tab").tab-pane.fade.in.active
include db1
div(id="db2Tab").tab-pane.fade
include db2
謝謝。我將使用您的示例代碼作爲基礎,並將我需要的代碼移植到其中。我仍然想知道爲什麼我以前的代碼不工作。這似乎與沒有正確鏈接boostrap.min.css和boostrap.min.js有關。我認爲在我的原始代碼中,我只能鏈接到boostrap.min.css – Student