AngularJs Substring
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.exampleString = "Hello World!"; $scope.result = ''; $scope.substringExample = function(){ $scope.result = $scope.exampleString.substring(1,4); } }); </script> </head> <body> <div ng-app="myApp"> <div ng-controller="myController"> <button type="button" ng-click="substringExample()">Click Me</button> <p>Result = {{result}}</p> </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.exampleString = "Hello World!"; $scope.result = ''; $scope.substringExample = function(){ $scope.result = $scope.exampleString.substring(1,4); } }); </script> </head> <body> <div ng-app="myApp"> <div ng-controller="myController"> <button type="button" ng-click="substringExample()">Click Me</button> <p>Result = {{result}}</p> </div> </div> </body> </html>
Copyrights@tutorialsplane.com