angularjs中怎么验证多选框至少选择一个

2024-11-16 05:49:05
推荐回答(2个)
回答1:

testvar myApp = angular.module("myApp", []); myApp.filter('myfilter',function(){ return function(input,toggle){ var tmp = []; angular.forEach(input,function(value,key){ switch(toggle){ case 'a': if(value>0) tmp.push(value);

回答2:

绑定的对象数组中。选中的对象有个值是checked:true。