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.............");
}
}
});
以上是我的代码从选择选项中选择多个类别,在这里我将尝试在URL中的教育下拉菜单。当我在该教育选择选项中选择“任何”时,其他人取消选择。所以请任何人给出一些关于使用下拉菜单的设计想法淘汰赛js。