angularjs 的select设置默认值 博客分类: AngularJS AngularJSselectng-options默认值
程序员文章站
2024-03-19 21:00:34
...
myAppModule.controller('FrmController',['$scope',function($scope){
$scope.colors =[{name:'black', shade:'dark'},{name:'white', shade:'light'},{name:'red', shade:'dark'},{name:'blue', shade:'dark'},{name:'yellow', shade:'light'}];
$scope.myColor ='red';}]);
<form ng-controller="FrmController">
<select ng-model="m.myColor" ng-options="color.name as color.name for color in colors">
</select>
</form>
如果写成 <select ng-model="myColor" 这样可以设置默认值, 但是提交的时候,要写上每个表单域的值, 如果写成<select ng-model="m.myColor" 只需要提交 $scropt.m 就可以, 但是这样 $scope.myColor = 'red’; 就不起作用了,有没有兼顾的写法?
3 回复
推荐阅读
-
angularjs 的select设置默认值 博客分类: AngularJS AngularJSselectng-options默认值
-
详解使用angularjs的ng-options时如何设置默认值(初始值)
-
AngularJS select加载数据选中默认值的方法
-
AngularJS select设置默认值的实现方法
-
AngularJS select加载数据选中默认值的方法
-
详解使用angularjs的ng-options时如何设置默认值(初始值)
-
在AngularJS中使用select加载数据选中默认值的方法该怎么处理?
-
AngularJS select设置默认值的实现方法
-
在AngularJS中使用select加载数据选中默认值的方法该怎么处理?