码迷,mamicode.com
首页 > Web开发 > 详细

angularJs 处理下拉列表(select option)

时间:2017-06-14 22:26:44      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:bsp   class   mod   scope   数组   order   内容   option   name   

<select ui-select2="{allowClear: true }" ng-model="orderTreatInfo.performDeptId" id="treatPerformDeptId">
    <option value=""></option>
    <option ng-repeat="performDept in performDeptList" value="{{::performDept.deptCode}}">
        {{::performDept.deptName}}
    </option>
</select>

performDeptList 是下拉列表要显示的内容,是一个数组用来ng-repeat遍历的

performDept 是 performDeptList 的每一项

value="{{::performDept.deptCode}}" 如果选中这一项value的值就会被赋值给 $scope.orderTreatInfo.performDeptId

{{::performDetp.deptName}}是用来显示在select中的内容 选择这个 则实际赋值的则是其option标签中的value值

angularJs 处理下拉列表(select option)

标签:bsp   class   mod   scope   数组   order   内容   option   name   

原文地址:http://www.cnblogs.com/ms-grf/p/7011082.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!