如何实现使用 angular-bootstrap 的jQuery 解决方案功能?我想实现播放按钮并打开从选定选项卡到最后一个选项卡的选项卡轮播。
var app = angular.module('app', ['ui.bootstrap']);
app.controller('homeCtrl', function($scope) {
$scope.tabs = [{
id: 1,
name: "Tab 1",
message: "",
active: true
}, {
id: 2,
name: "Tab 2",
message: "",
active: false
}, {
id: 3,
name: "Tab 3",
message: "",
active: false
}];
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="https://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.12.1.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<div ng-app="app">
<div ng-controller="homeCtrl">
<button class="btn btn-default"><i class="glyphicon glyphicon-play"></i>
</button>
<tabset>
<tab ng-repeat="tab in tabs" heading="{{tab.name}}" active="tab.active">
{{tab}}
</tab>
</tabset>
</div>
</div>