La función angular.uppercase() en AngularJS se usa para convertir la string en mayúsculas . Se puede usar cuando el usuario quiere mostrar el texto en mayúsculas en lugar de minúsculas.
Sintaxis:
angular.uppercase(string)
Ejemplo: En este ejemplo, la string se convierte a mayúsculas.
<html ng-app="app"> <head> <script src= "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"> </script> <title>angular.uppercase()</title> </head> <body style="text-align:center"> <h1 style="color:green">GeeksforGeeks</h1> <h2>angular.uppercase()</h2> <div ng-controller="geek"> <br> <b>Before: </b>{{ string1 }} <br><br> <button id="myButton" ng-mousedown="upper()">Click it! </button> <br><br> <b>After: </b>{{ string2 }} </div> <script> var app = angular.module('app', []); app.controller('geek', function($scope) { $scope.obj1 = "geeksforgeeks is the computer science portal for geeks." $scope.obj2; $scope.string1 = $scope.obj1; $scope.upper = function() { $scope.string2 = angular.uppercase($scope.obj1); } }); </script> </body> </html>
Salida:
Antes de hacer clic:
Después de hacer clic:
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA