我已成功使用选择下拉列表code here
我想根据Id也在下拉列表中搜索文本。
如下例
<select chosen data-placeholder="Select Country" class="chosen-select" id="txtcontry"
ng-options="country.Id as country.Name for countryName in CountryNames" ng-model="country.Id">
<option value="Select Country"></option>
</select>
现在每个country Name
都有Id
与之关联。
所以我想search
name
以及Id
。
例如,如果国家/地区名称为United States
且其Id
为100
那么如果我放100
那么它应该显示United States
作为输出。