Angularjs UI引导程序在静态选项卡中动态选择不起作用

前端之家收集整理的这篇文章主要介绍了Angularjs UI引导程序在静态选项卡中动态选择不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有三个静态选项卡和一个按钮,使用ng-click =“selectThirdTab()”
<div ng-controller="Ctrl">
        <input type="button" value="Select third tab" ng-click="selectThirdTab()" />
        <tabset justified="true">
            <tab heading="First" active="isFirstActive"></tab>
            <tab heading="Second" active="isSecondActive"></tab>
            <tab heading="Third" active="isThirdActive"></tab>
        </tabset>
</div>

函数“selectThirdTab”如下:

$scope.selectThirdTab = function () {
    $scope.isThirdActive = true;
}

吸管在这里:Plunker

最初选择第一个选项卡,单击按钮,结果是选中的第三个按钮.现在,如果您选择其他选项卡,然后再次单击“选择第三个选项卡”按钮,则不会选择第三个按钮.
怎么了?

或者你可以这样:
angular.module('plunker',['ui.bootstrap']);
var Ctrl = function ($scope,$timeout) {
    $scope.isActive = [{active:true},{active:false},{active:false}];
    $scope.selectThirdTab = function () {
          $scope.isActive[2].active = true;
    }
}

并在HTML中

<tabset justified="true">
        <tab heading="First" active="isActive[0].active"></tab>
        <tab heading="Second" active="isActive[1].active"></tab>
        <tab heading="Third" active="isActive[2].active"></tab>
    </tabset>
原文链接:/angularjs/140970.html

猜你在找的Angularjs相关文章