最新的Web开发教程
 

AngularJS小写的过滤器


显示在小写字母文字:

<div ng-app="myApp" ng-controller="caseCtrl">

<h1>{{txt | lowercase}}</h1>

</div>

<script>
var app = angular.module('myApp', []);
app.controller('caseCtrl', function($scope) {
    $scope.txt = "Hello World!";
});
</script>
试一试»

定义和用法

lowercase过滤器将字符串转换为小写字母。


句法

{{ string | lowercase }}

相关页面

AngularJS教程: 角过滤器