angularjs ui-select如何设置默认选中值

前端之家收集整理的这篇文章主要介绍了angularjs ui-select如何设置默认选中值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

angularjs ui-select如何设置默认选中值,可以采用ng-model来设置,示例如下:

            <div class="col-sm-6">
 
                  <ui-select ng-model="provinces.selected" theme="bootstrap"
 
                        on-select="loadCitys($item,$model)"> <ui-select-match
 
                        placeholder="选择省份">{{$select.selected.name}}</ui-select-match> <ui-select-choices
 
                        repeat="province in provinces  | filter: $select.search">
 
                    <div ng-bind-html="province.name | highlight: $select.search"></div>
 
                    </ui-select-choices> </ui-select>
 
                </div>
只要设置了 ng-model并设置它的值 ,就可以出来默认选 中了。 原文链接:https://www.f2er.com/angularjs/148055.html

猜你在找的Angularjs相关文章