這次帶給大家Angular過濾器做出資料大小寫轉換,Angular過濾器做出資料大小寫轉換的注意事項有哪些,以下就是實戰案例,一起來看一下。
<!DOCTYPE html> <html ng-app="myApp"> <head> <meta charset="UTF-8"> <title>angular过滤器uppercase/lowercase字母大小写转换</title> <script src="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>
我相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是Angular過濾器做出資料大小寫轉換的詳細內容。更多資訊請關注PHP中文網其他相關文章!