Angular使用过滤器uppercase/lowercase实现字母大小写转

这篇文章主要介绍了Angular使用过滤器uppercase/lowercase实现字母大小写转换功能,涉及AngularJS过滤器针对字符串转换的简单使用技巧,需要的朋友可以参考下

本文实例讲述了Angular使用过滤器uppercase/lowercase实现字母大小写转换功能。分享给大家供大家参考,具体如下:

<!DOCTYPE html> <html ng-app="myApp"> <head> <meta charset="UTF-8"> <title> angular过滤器uppercase/lowercase字母大小写转换</title> <script src="https://www.jb51.net/angular.min.js"></script> </head> <body ng-controller="my"> <span ng-bind="name"></span> <span ng-bind="name | uppercase"></span> 输出大写 <span ng-bind="name |lowercase"></span>输出小写 </body> <script type="text/javascript"> var app=angular.module("myApp",[]); app.controller("my",["$scope",function($scope){ $scope.name="Jaay"; }]) </script> </html>

运行结果:

Angular使用过滤器uppercase/lowercase实现字母大小写转

PS:这里再为大家推荐几款相似的在线工具供大家参考:

在线字母大小写转换工具:

人民币大写在线转换工具:

更多关于AngularJS相关内容感兴趣的读者可查看本站专题:《AngularJS指令操作技巧总结》、《AngularJS入门与进阶教程》及《AngularJS MVC架构总结

希望本文所述对大家AngularJS程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/pxdzz.html