如何设置使用knockoutjs选择多部分选择选项中的所有选项

Html:   

视图模型:

  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 .in中的Eduction下拉列表当我在该教育选择选项中选择“任意”时其他人取消选择。所以请任何人给出一些关于设计下拉使用的想法淘汰赛。