当我选择一个值并点击一个按钮时,我有一个下拉列表它被禁用,但背景颜色不像文本框一样灰色,我需要在下拉列表中将背景颜色设置为灰色在AngularJS中被禁用。 JS
<select class="categories" ng-model="Model.CurrentDowntime.CategoryId" ng-options="downtimeCategory.CategoryId as downtimeCategory.CategoryName for downtimeCategory in Model.DowntimeCategories" ng-disabled="Model.CurrentDowntime.EventId !== undefined" required="" >
<option value="">-------------------SELECT-----------------</option>
</select>
答案 0 :(得分:7)
在你的CSS中:
select[disabled] {
background-color: #CCC; //use your prefered color here
}