表达式过滤器 lowercase | AngularJS 实例

返回到:AngularJS 实例列表

使用表达式过滤器 lowercase,看下这个实例,代码:

<!DOCTYPE html>
<html>
<head>
<title>AngularJS 实例 | Web176教程网web176.com</title>
<meta charset="utf-8">
<script src="https://cdn.staticfile.org/angular.js/1.4.6/angular.min.js"></script>
</head>
<body>

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

<p>姓名为 {{ lastName | lowercase }}</p>

</div>

<script>
	angular.module('myApp', []).controller('personCtrl', function($scope) {
    $scope.firstName = "John",
    $scope.lastName = "Doe",
    $scope.fullName = function() {
        return $scope.firstName + " " + $scope.lastName;
    }
});

</script>

</body>
</html>

作者:terry,如若转载,请注明出处:https://www.web176.com/angularjsex/6634.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2022年8月25日 上午10:34
下一篇 2022年8月25日 上午10:38

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注