我使用的是引導的nav-tabs
具有以下設置:跳轉到特定的標籤從引導的導航,選項卡選擇其他選項卡
<ul class="nav nav-tabs">
<li class="active"><a href="#home" data-toggle="tab">Home</a></li>
<li><a href="#profile" data-toggle="tab">Profile</a></li>
</ul>
<div id="tabContent" class="tab-content">
<div class="tab-pane active in" id="home">
<form id="tab">
<label>Name:</label>
<input type="text" value="fooBar" class="input-xlarge">
</form>
</div>
<div class="tab-pane fade" id="profile">
<form id="tab2">
<a href="#home">Home</a>
</form>
</div>
</div>
正如你所看到的,我有我的profile
標籤中的鏈接,該鏈接到第一個標籤。點擊錨點確實會更改URL欄中的URL,但它不會跳轉到特定的選項卡。
然後我注意到,它通常是不可能的鏈接直接在標籤,所以我增加從Twitter Bootstrap Tabs: Go to Specific Tab on Page Reload or Hyperlink下面的代碼:
// Javascript to enable link to tab
var url = document.location.toString();
if (url.match('#')) {
$('.nav-tabs a[href=#'+url.split('#')[1]+']').tab('show') ;
}
// Change hash for page-reload
$('.nav-tabs a').on('shown', function (e) {
window.location.hash = e.target.hash;
})
現在我可以從別的地方鏈接到一個特定的標籤,但不,如果我在導航欄所在的同一頁面上。重裝後,頁面會跳轉到想要的選項卡,所以我想我可能只是強制重新加載頁面,從Javascript: How to truly reload a site with an anchor tag?解決方案:
window.location.reload(true);
然而,這每一次我在選項卡上單擊時間結束了在重載,另外它仍然沒有加載home
標籤,當點擊錨時。
因此,如何從另一個選項卡跳到給定的id
?