Html:
<select name="item" id="item" class="input-fo" multiple="multiple" data-bind="
options : categories,
optionsValue : '_id',
optionsText : 'name',
selectedOptions : selectedCategory,
select2 : {}
">
</select>
视图模型:
this.selectedCategory = ko.observable(1);
this.selectedCategory.subscribe(function (options) {
if(options.length >0){
if (options.find('select_all')) {
console.log("................INSIDE IF.............");
***IF Select all option is true other option selected deselect***
}else{
console.log("................INSIDE ELSE IF.............");
}
}
});
以上是我的代码从select选项中选择多个类别,在这里我将尝试在Url中的Eduction下拉列表。当我在该教育选择选项中选择'Any'时,其他人取消选择。所以请任何一个给使用Knockout js下拉设计的一些想法。