如何在 angular.js 和 bootstarp 中添加下拉选项卡,这是我的代码
<tabset class="nav nav-tabs centered-tab sub-nav">
<tab heading="Bio" class="dropdown-toggle" >
<ul class="dropdown-menu">
<li ng-repeat="choice in items">
<a>{{choice}}</a>
</li>
</ul>
</tab>
</tabset>
在控制器中
$scope.items = [
"The first choice!",
"And another choice for you.",
"but wait! A third!"
];
当我点击“bio”选项卡时它不起作用