美文网首页
字符串大小写过滤器

字符串大小写过滤器

作者: c59ffede9db6 | 来源:发表于2017-04-22 00:47 被阅读0次
    <!DOCTYPE html>
    <html ng-app='test'>
      <head>
        <meta charset="utf-8">
        <title>angular</title>
        <script src='bower_components/angular/angular.js'>
        </script>
        <script>
          var app=angular.module('test',[]);
          app.controller('con1',function($scope,$http){
              $scope.a='asdFsfsXW'
              $scope.b='SWEeFAcFFS'
          })
        </script>
      </head>
      <body ng-controller='con1'>
        {{a|uppercase}}
        <p>{{b|lowercase}}</p>
        <!-- ASDFSFSXW
         sweefacffs -->
      </body>
    </html>
    
    

    相关文章

      网友评论

          本文标题:字符串大小写过滤器

          本文链接:https://www.haomeiwen.com/subject/ytwjzttx.html