简体   繁体   中英

Call angularJS function on page load from JavaScript

I am very New to AngularJS and I have an web Application that calls an ng-click when a button is clicked. I would like to add code to call this function on page load.

在此处输入图片说明

This is the where the function is called in the code. Is there anyway to do this?

When element is loaded you can fire ng-init

<div ng-init="zoom.fit()">
  some code
</div>

ng-init documentation

Use this in your controller

$scope.$on('$viewContentLoaded', function() {
  $scope.zoo.fit();
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM