在给予ng-disabled后,Bootstrap切换按钮仍然有效

时间:2017-02-06 12:57:54

标签: angularjs twitter-bootstrap

  <input type="radio" name="options" value="1" ng-model="isResource" ng-disabled="Subcomponent.length||resource.length"/>Yes
 </label>
 <label class="btn btn-default" ng-click="subComponentYes($event,0)" ng-class="{active : isResource === false}" ng-disabled="Subcomponent.length||resource.length">
  <input type="radio" name="options" value="0" ng-model="isResource" ng-disabled="Subcomponent.length||resource.length"/>No
 </label>
</div>

我添加了“禁用”功能,但它只显示已禁用。可点击和其他功能正常。

1 个答案:

答案 0 :(得分:0)

检查浏览器中是否设置了ng-disabled的值。您可以通过在浏览器中使用inspect元素来完成此操作。如果值不是truefalse,那么您使用了错误的表达式来设置值。