angularJs下拉框
Posted 宋赟鑫 https://meilishiyan-song.t
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularJs下拉框相关的知识,希望对你有一定的参考价值。
1 只是一个下拉框
<!-- <select ng-model="areaType" ng-disabled="isDisable" class="form-control" ng-options="c.code as c.code for c in codes"> -->
<!-- <option value="">---请选择---</option> -->
<!-- </select> -->
2 可输入下拉框,并且支持模糊查询
<ui-select ng-model="areaType.selected" theme="bootstrap" ng-change="change()" search-enabled="searchEnabled" style="width: 150px;" title="Choose a areaType">
<ui-select-match placeholder="Please select">{{$select.selected.area}}</ui-select-match>
<ui-select-choices repeat="areaType in areaTypes | propsFilter: {id: $select.search, area: $select.search}">
<div ng-bind-html=" areaType.area | highlight: $select.search "></div>
<!-- <small> -->
<!-- {{areaType.area +‘-‘+areaType.id}} -->
<!-- </small> -->
</ui-select-choices>
</ui-select>
以上是关于angularJs下拉框的主要内容,如果未能解决你的问题,请参考以下文章