8

我想创建可关闭的选项卡(如 chrome 选项卡或 firefox 选项卡,每个选项卡上都有一个小“x”)。如何在 UI-Bootstrap 中配置现成的 tab 组件来添加这个功能?

谢谢。

4

1 回答 1

25

您可以在标签标题中使用 html 和 ng-click,例如

<div ng-controller="mainCtrl">
    <tabset>
        <tab ng-repeat="t in tabs">
            <tab-heading>{{t.title}} <a ng-click="removeTab($index)" href=''><i class="icon-remove"></i></a></tab-heading>
            <div ng-bind-html-unsafe='t.content'></div>
        </tab>
    </tabset>
</div>


angular.module('myApp', ['ui.bootstrap']).controller("mainCtrl", function ($scope) {
    $scope.tabs = [{        
        title: "one",
        content: '<h1>tab one</h1>'
    }, {
        title: "two",
        content: '<h1>tab two</h1>'
    }, {
        title: "three",
        content: '<h1>tab three</h1>'
    }];
    $scope.removeTab = function (index) {
        $scope.tabs.splice(index, 1);
    };
});

JSFiddle:http: //jsfiddle.net/alfrescian/ZE9cE/

于 2013-07-15T11:30:13.383 回答