Angular.JS中select下拉框设置value的方法
程序员文章站
2022-03-21 15:05:02
前言
本文主要给大家介绍的是关于angular.js中select下拉框设置value的相关内容,非常出来供大家参考学习,下面来一起看看详细的介绍:
最近在系统中增加一...
前言
本文主要给大家介绍的是关于angular.js中select下拉框设置value的相关内容,非常出来供大家参考学习,下面来一起看看详细的介绍:
最近在系统中增加一个查询的筛选条件,通过下拉框选取,用的是angular常见的ng-options
指令:
<select id="selectdetectunit" class="form-control" ng-model="detectunits" ng-options="detectunit.name for detectunit in detectqueryfilters.detectunits"> <option value="">全部</option> </select>
但是有个问题,ng-options
指令仅仅设置了下拉框选项的text,而不是value,打印下拉框的内容如下:
<option value="" class="">全部</option> <option value="0">董浜惠健净菜</option> <option value="1">古里绿品公司</option> <option value="2">曹家桥物流公司</option> <option value="3">董浜农服中心</option>
value部分是自动设置的0,1,2,3,并不是实际的id。
那么,angualr js 怎样设置下拉框的value呢?
网上查了一遍,结合自己的一点探索,找到了答案,类似于表格记录的用法:
<select id="selectdetectunit" class="form-control" ng-model="filter.detectunitid" > <option value="">全部</option> <option ng-repeat="detectunit in detectqueryfilters.detectunits" value="{{detectunit.id}}">{{detectunit.name}}</option> </select>
打印下拉框的内容如下:
<option value="">全部</option> <!-- ngrepeat: detectunit in detectqueryfilters.detectunits --> <option ng-repeat="detectunit in detectqueryfilters.detectunits" value="160101" class="ng-scope ng-binding">董浜惠健净菜</option> <option ng-repeat="detectunit in detectqueryfilters.detectunits" value="160102" class="ng-scope ng-binding">古里绿品公司</option> <option ng-repeat="detectunit in detectqueryfilters.detectunits" value="160103" class="ng-scope ng-binding">曹家桥物流公司</option> <option ng-repeat="detectunit in detectqueryfilters.detectunits" value="160104" class="ng-scope ng-binding">董浜农服中心</option> <option ng-repeat="detectunit in detectqueryfilters.detectunits" value="160105" class="ng-scope ng-binding">港南村7组</option>
虽然option中多了一些属性,看着有点复杂,不过value总算有了正确的值。
然后试着取值:
alert($scope.filter.detectunitid);
问题解决!
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。
上一篇: 原生js二级联动效果
推荐阅读
-
layui中select,radio设置不生效的解决方法
-
JavaScript实现获取select下拉框中第一个值的方法
-
Layui 设置select下拉框自动选中某项的方法
-
jQuery操作select下拉框的text值和value值的方法
-
PostgreSQL数据库中告警日志中不记录select的设置方法
-
JavaScript实现向select下拉框中添加和删除元素的方法
-
Angular.JS中select下拉框设置value的方法
-
element-ui中的select下拉列表设置默认值方法
-
详解JavaScript实现向select下拉框中添加和删除元素的方法
-
详解HTML中select下拉框内容显示不全部分被覆盖的解决方法