angularjs 如何处理checkbox
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs 如何处理checkbox相关的知识,希望对你有一定的参考价值。
直接上程序代码:
index.html
- <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
- 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的主要内容,如果未能解决你的问题,请参考以下文章
登录时如何处理状态(Ionic、Firebase、AngularJS)?
如何处理 Spring Boot、AngularJS 应用程序中的 CORS 错误?