0

我正在尝试实现 UI Bootstrap 选项卡,plunker在这里,我想隐藏选项卡,因为我将使用按钮来更改选项卡。

我将这个类添加到我的 CSS 文件中,但它没有应用于选项卡

.nav-tabs {
    border-bottom: 1px solid #ddd;
    display: none;
}

我的最终目标是隐藏This。我该如何处理?

4

1 回答 1

1

你可以添加一个 ng-hide="true" 吗?

 <uib-tab index="$index" ng-repeat="tab in tabs" ng-hide="true" heading="{{tab.title}}" disable="tab.disabled">
  {{tab.content}}
</uib-tab>
于 2017-04-11T17:21:52.480 回答