Detect if checkbox is checked or unchecked in Angular.js ng-change event

前端 未结 2 1579
南笙
南笙 2021-01-31 08:04

I want to detect if a checkbox has been checked or unchecked when a click is happening on the checkbox.

This is what I have:



        
2条回答
  •  后悔当初
    2021-01-31 08:41

    You could just use the bound ng-model (answers[item.questID]) value itself in your ng-change method to detect if it has been checked or not.

    Example:-

     
    

    and

    $scope.stateChanged = function (qId) {
       if($scope.answers[qId]){ //If it is checked
           alert('test');
       }
    }
    

提交回复
热议问题