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

2024年11月16日 05:49
有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。