如何在AngularJS中禁用下拉列表时使背景颜色变为灰色

时间:2014-08-21 08:18:32

标签: html angularjs

当我选择一个值并点击一个按钮时,我有一个下拉列表它被禁用,但背景颜色不像文本框一样灰色,我需要在下拉列表中将背景颜色设置为灰色在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> 

1 个答案:

答案 0 :(得分:7)

在你的CSS中:

select[disabled] {
   background-color: #CCC;  //use your prefered color here
}