我使用以下代码渲染选项,其中使用ng-options呈现选项:
<select ng-options="cat.id as cat.name for cat in categories">
<option value="" selected="selected">Default Option...</option>
</select>
我只需要为具有特殊ID的选项添加CSS样式选项(即font-weight:bold)。有什么建议吗?
答案 0 :(得分:0)
如果您需要设置样式,请考虑使用
<option
ng-repeat="cat in categories"
ng-value="{{ cat.id }}"
ng-bind="cat.name"
ng-style="cat.style"></option>