2014-02-26 157 views
0

我正在使用引導選項卡。標籤問題引導

<ul class="nav nav-tabs"> 
    <li class="active"><a href="#home" data-toggle="tab">Home</a></li> 
    <li><a href="#settings" data-toggle="tab">Settings</a></li> 
</ul> 

<!-- Tab panes --> 
<div class="tab-content"> 
    <div class="tab-pane active" id="home"> 
     <h4>Horizontal description lists will truncate terms that are too.</h4> 
    </div> 
    <div class="tab-pane" id="settings"> 
     <p>narrower viewports, they will change to the default stacked layout. 
     <a href="#" id="read">Read Reviews</a> 
    </p> 
    </div> 
</div> 

有一個ID read。我想點擊此ID打開主頁選項卡,並希望激活主頁選項卡。

+0

你試過類似'Read Reviews'的東西嗎? – pstenstrm

+0

它的工作原理,但你將不得不添加一些JS,在活動標籤上更改類 – gskema

+0

你的代碼鋼是在bootstrap選項卡中工作... –

回答

0

你可以在你的頁面上添加下面的jquery。

$('#read').click(function() { 
    $('li a[href="#home"]').trigger('click'); 
});