首页 > 代码库 > angularjs 如何处理checkbox
angularjs 如何处理checkbox
直接上程序代码:
index.html
[html] view plain copy
- <div>
- <div ng-repeat="color in colors">
- <input type="checkbox" ng-checked="isChecked(color.id)"
- ng-click="updateSelection($event,color.id)" />{{color.name}}
- </div>
- </div>
- <div>
- Selected : {{selected}}
- </div>
controller.js
[javascript] view plain copy
- psmsApp.controller("vipApplyEditCtrl", function($scope) {
- $scope.colors = [
- {id : 1, name : ‘black‘},
- {id : 2, name : ‘red‘},
- {id : 3, name : ‘blue‘},
- {id : 4, name : ‘yellow‘},
- {id : 5, name : ‘green‘},
- {id : 6, name : ‘white‘}
- ] ;
- $scope.selected = [] ;
- $scope.isChecked = function(id){
- return $scope.selected.indexOf(id) >= 0 ;
- } ;
- $scope.updateSelection = function($event,id){
- var checkbox = $event.target ;
- var checked = checkbox.checked ;
- if(checked){
- $scope.selected.push(id) ;
- }else{
- var idx = $scope.selected.indexOf(id) ;
- $scope.selected.splice(idx,1) ;
- }
- } ;
- });
效果:
angularjs 如何处理checkbox
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。