Jquery选择基于文本ID的下拉搜索?

时间:2016-02-17 06:54:54

标签: javascript jquery jquery-chosen angular-chosen

我已成功使用选择下拉列表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>

我喜欢下面的样子 enter image description here

现在每个country Name都有Id与之关联。 所以我想search name以及Id

例如,如果国家/地区名称为United States且其Id100 那么如果我放100那么它应该显示United States作为输出。

0 个答案:

没有答案