JavaScript

超轻量级php框架startmvc

angular select 默认值设置方法

更新时间:2020-05-19 13:54:01 作者:startmvc
如下所示:<selectng-model="selected"ng-options="x.idasx.nameforxinusers"></select>$scope.users=[{name:'

如下所示:


<select ng-model="selected" ng-options="x.id as x.name for x in users"></select>

$scope.users = [
 {name:'a',id:'1'},
 {name:'b',id:'2'},
 {name:'c',id:'3'}
 ];
 $scope.selected='2';//id的值,区分类型
 $scope.selected=$scope.users[0].id;//如果想要第一个值

以上这篇angular select 默认值设置方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

angular select默认值