Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试实现 UI Bootstrap 选项卡,plunker在这里,我想隐藏选项卡,因为我将使用按钮来更改选项卡。
我将这个类添加到我的 CSS 文件中,但它没有应用于选项卡
.nav-tabs { border-bottom: 1px solid #ddd; display: none; }
我的最终目标是隐藏This。我该如何处理?
你可以添加一个 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>