我正在使用角带选择框。但是,我想禁用selectbox的所有选项,我该如何实现?
$scope.itemsPerPageList = ['All','10','20','30','40'];
<select class="span2"
ng-init="itemsPerPage = itemsPerPageList[0]"
ng-model="itemsPerPage" ng-change="changePager()"
ng-options="obj as obj for obj in itemsPerPageList"
data-style="btn-primary" bs-select>
</select>
我尝试使用ng-disabled=true
,但没有运气。
答案 0 :(得分:1)
您似乎正在使用AngularStrap v1.x,它已过时且不再受支持。在AngularStrap v2.x中,选择是这样完成的:
<button type="button" class="btn btn-default"
ng-model="selectedIcon"
data-html="1"
ng-options="icon.value as icon.label for icon in icons"
bs-select>
Action <span class="caret"></span>
</button>
ng-disabled=true
可以使用它。看看at the doc。