Bài 23: Angularjs format và filtering phần 2
Lượt xem: 2257
Xem demo
Filtering với format hiện tại
<html>
<head>
<title>Filtering với format hiện tại</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>
<script>
angular.module('myWebApp', []).controller('listnamesCtrl', function($scope) {
app.controller('fitercurrencyCtrl', function($scope) {
$scope.quantity = 1;
$scope.price = 9.99;
});
</script>
</head>
<body ng-app="MyForm">
<div ng-app="myWebApp" ng-controller="fitercurrencyCtrl">
<input type="number" ng-model="quantity">
<input type="number" ng-model="price">
<p>Total = {{(quantity * price) | currency}} </p>
</div>
</body>
</html>
Xem demo