这是我的下拉列表
<select id="productselect" aria-label="Single Select"
data-bind="ojComponent: {component: 'ojSelect', disabled: false,
value: productValue,optionChange: onChangeProduct,
rootAttributes: {style:'max-width:20em'}}">
<!-- ko foreach: products -->
<option data-bind="value:value, text:label, css:{labelclass:true}">
</option>
<!-- /ko -->
</select>
我想通过传递动态类为每个列表项应用不同的颜色,但不起作用。请帮忙。
下拉应该像
<option style = "color : red" data-bind="value:value, text:label">
<option style = "color : blue" data-bind="value:value, text:label">
and so on...
如何动态实现这种类型的下拉。