最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Trigger ng-change on load - Stack Overflow

programmeradmin1浏览0评论

I have multiple checkbox being rendered on page, i would like to trigger ng-change() if my checkbox has been checked on load.

<input type="checkbox" ng-true-value="true" 
      ng-false-value="false"
        ng-change="CustomCheckSelect(someValue)" ng-model="model.defaultCheckBox"/>

Using ng-init is causing me problems and throwing errors in console as some of them are not checked.

I have multiple checkbox being rendered on page, i would like to trigger ng-change() if my checkbox has been checked on load.

<input type="checkbox" ng-true-value="true" 
      ng-false-value="false"
        ng-change="CustomCheckSelect(someValue)" ng-model="model.defaultCheckBox"/>

Using ng-init is causing me problems and throwing errors in console as some of them are not checked.

Share Improve this question asked Feb 2, 2016 at 12:30 ShaneShane 5,68715 gold badges57 silver badges82 bronze badges 2
  • How are you setting value checked on load? Also instead of having function on change, you can have a $watch on it. – Rajesh Commented Feb 2, 2016 at 12:35
  • share all the files and code u have tried. If possible add ur code in plunker – vamshi krishna kurella Commented Feb 2, 2016 at 12:36
Add a ment  | 

2 Answers 2

Reset to default 6

Try this. Write a <div></div> with ng-if and check whether "model.defaultCheckBox" is true or false. Call a method in ng-init from that div. Like-

<div  
    ng-if="model.defaultCheckBox"  ng-init="CustomCheckSelect(somevalue)">
</div>

From the docs about ngChange:

The ngChange expression is only evaluated when a change in the input value causes a new value to be mitted to the model.

Even if you would trigger the ng-change, let's say with ng-model-options:
ng-model-options="{updateOn: 'onload default'}"
it wouldn't get evaluated because you are not changing any value.

If you don't like the ngInit solution you can try manually invoking the function in the controller.

So you have one $scope.model and some of the properties are handled by checkboxes let's say defaultCheckbox and secondaryCheckbox.

To avoid repetition I would store these values in an array and then iterate and call the function CustomCheckSelect by condition:

var checkboxes = ['defaultCheckbox', 'secondaryCheckbox'];

angular.forEach(checkboxes, function(val){
    if ($scope.model[val]) {
        $scope.CustomCheckSelect(val);
    }
})

plunker

发布评论

评论列表(0)

  1. 暂无评论