AngularJs set variable in view
home
Run
screen_rotation
fullscreen
cloud_download
<!DOCTYPE html> <html lang="en"> <head> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js"></script> <script> var myApp = angular.module("myApp", []); myApp.controller("myController", function($scope) { $scope.myValue = ''; $scope.getVarValue = function() { alert($scope.myVar); }; }); </script> </head> <body> <div ng-app="myApp"> <div ng-controller="myController"> {{myVar='Hello World!'}} <button ng-click="getVarValue()" >Get Value</button> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js"></script> <script> var myApp = angular.module("myApp", []); myApp.controller("myController", function($scope) { $scope.myValue = ''; $scope.getVarValue = function() { alert($scope.myVar); }; }); </script> </head> <body> <div ng-app="myApp"> <div ng-controller="myController"> {{myVar='Hello World!'}} <button ng-click="getVarValue()" >Get Value</button> </div> </div> </body> </html>
Copyrights@tutorialsplane.com