我有一个使用我的 SELECT html 标记的 optgroup 的解决方案。
这是 SO 帖子:Construct a knockout SELECT with optgroup based on observableArray
现在我想在这个 SELECT 中允许一个空值。我尝试使用 optionsCaption:
<select data-bind="foreach: brands, optionsCaption: ' '">
<optgroup data-bind="attr: {label: $data}, foreach: $parent.vehicles">
<!-- ko if: Brand == $parent -->
<option data-bind="text: Type"></option>
<!-- /ko -->
</optgroup>
</select>
但它不起作用:没有空选项。
任何想法?
谢谢。