在Angular UI中使用 Bootstrap 选项卡时,有没有办法知道选择了哪个选项卡?
我尝试查看窗格数组,但切换选项卡时它似乎没有更新。可以在选择选项卡时指定回调函数吗?
更新代码示例。
该代码非常遵循 Angular UI 引导页面中的示例。
标记:
<div ng-controller="TabsDemoCtrl">
<tabs>
<pane ng-repeat="pane in panes" heading="{{pane.title}}" active="pane.active">
<div ng-include="pane.template"></div>
</pane>
</tabs>
</div>
控制器:
var TabsCtrl = function ($scope) {
$scope.panes = [
{ title:"Events list", template:"/path/to/template/events" },
{ title:"Calendar", template:"/path/to/template/calendar" }
];
};