La función angular.lowercase() en AngularJS se usa para convertir la string en minúsculas . Se puede usar cuando el usuario quiere mostrar el texto en minúsculas en lugar de mayúsculas o cuando se quiere comparar dos strings.
Sintaxis:
angular.lowercase(string)
Ejemplo: En este ejemplo, la string se convierte a minúsculas.
<html ng-app="app"> <head> <script src= "https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"> </script> <title>angular.lowercase()</title> </head> <body style="text-align:center"> <h1 style="color:green">GeeksforGeeks</h1> <h2>angular.lowercase()</h2> <div ng-controller="geek"> <br> <b>Before: </b>{{ string1 }} <br><br> <button id="myButton" ng-mousedown="lower()">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.lower = function() { $scope.string2 = angular.lowercase($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