我正在使用此绑定来创建一个选择组选择框。
<pre>
<select data-bind="disable: disableForm, foreach: List.available, value: List.selected">
<optgroup data-bind="attr: {label: category}, foreach: items , disable : items.length==0">
<option data-bind="attr: {title: name}, text: name, value: id, enable: Active"></option>
</optgroup>
</select>
</pre>
我正在尝试使用 optionCaption,但它仅适用于选项标签,有什么方法可以使用 optgroup 实现此功能?