1.$timeout delay
("main",function($scope,$timeout){ $="pink"; $="The Second Box"; $timeout(function(){ $="The content of the first box changed after two seconds"; },2000); setTimeout(function(){ $="The content of the first box changed after 3 seconds"; $scope.$apply();//Manually update the view},3000); }
2.$interval timer
//Timervar timer= $interval(function(){ (1); },1000); //Clear the timer $(timer);
Click not available
<button ng-click="clickb()" ng-disabled="flag">{{num}}</button> $=false; $=(function(){ $=true; $=5; var int = $interval(function(){ $--; if($==-1){ $=false; $="Click countdown for 5 seconds"; $(int); } },1000); });
Summarize
The above is the AngularJs delay and timer example code introduced to you by the editor. I hope it will be helpful to you. If you have any questions, please leave me a message and the editor will reply to you in time!