ng-checked and ng-change radio button not work together - angularjs
问题 http://plnkr.co/edit/RP9SpO1qGjn5Ua6pZJ3D?p=preview js angular.module("sampleapp", []).controller('samplecontroller', function($scope,$rootScope) { $scope.radii = [ {id:.25, checked:false, name:"1/4 Mile"}, {id:.5, checked:false, name:"1/2 Mile"}, {id:1, checked:false, name:"1 Mile"}, {id:2, checked:true, name:"2 Mile"}, {id:3, checked:false, name:"3 Mile"}, {id:4, checked:false, name:"4 Mile"}, {id:5, checked:false, name:"5 Mile"} ]; $scope.handleRadioClick = function(){ alert(); }; }); and