AngularJS Filters 통화 필터
AngularJS Filters 통화 필터
currency필터는 통화로 숫자를 포맷 :
예
<div ng-app="myApp" ng-controller="costCtrl">
<h1>Price: {{ price | currency }}</h1>
</div>
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="costCtrl">
<h1>Price: {{ price | currency }}</h1>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('costCtrl', function($scope) {
$scope.price = 58;
});
</script>
<p>The currency filter formats a number to a currency format.</p>
</body>
</html>
currency필터는 통화로 숫자를 포맷 :
예
<div ng-app="myApp" ng-controller="costCtrl">
<h1>Price: {{ price | currency }}</h1>
</div>
[전체소스]
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="costCtrl">
<h1>Price: {{ price | currency }}</h1>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('costCtrl', function($scope) {
$scope.price = 58;
});
</script>
<p>The currency filter formats a number to a currency format.</p>
</body>
</html>
첨부파일
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 148 | AngularJS | 8년 전 | 1653 | ||
| 147 | AngularJS | 8년 전 | 1069 | ||
| 146 | AngularJS | 8년 전 | 1255 | ||
| 145 | AngularJS | 8년 전 | 1369 | ||
| 144 | AngularJS | 8년 전 | 1154 | ||
| 143 | AngularJS | 8년 전 | 1201 | ||
| 142 | AngularJS | 8년 전 | 1168 | ||
| 141 | AngularJS | 8년 전 | 1330 | ||
| 140 | AngularJS | 8년 전 | 1195 | ||
| 139 | AngularJS | 8년 전 | 1439 | ||
| 138 | AngularJS | 8년 전 | 1149 | ||
| 137 | AngularJS | 8년 전 | 1060 | ||
| 136 | AngularJS | 8년 전 | 1148 | ||
| 135 | AngularJS | 8년 전 | 1672 | ||
| 134 | AngularJS | 8년 전 | 1379 | ||
| 133 | AngularJS | 8년 전 | 1472 | ||
| 132 | AngularJS | 8년 전 | 1098 | ||
| 131 | AngularJS | 8년 전 | 1367 | ||
| 130 | AngularJS | 8년 전 | 1463 | ||
| 129 | AngularJS | 8년 전 | 1437 | ||
| 128 | AngularJS | 8년 전 | 2059 | ||
| 127 | AngularJS | 8년 전 | 1482 | ||
| 126 | jQuery Mobile | 8년 전 | 2256 | ||
| 125 | jQuery Mobile | 8년 전 | 2013 | ||
| 124 | jQuery Mobile | 8년 전 | 1881 | ||
| 123 | jQuery Mobile | 8년 전 | 1811 | ||
| 122 | jQuery Mobile | 8년 전 | 1851 | ||
| 121 | jQuery Mobile | 8년 전 | 2056 | ||
| 120 | jQuery Mobile | 8년 전 | 1592 | ||
| 119 | jQuery Mobile | 8년 전 | 1674 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기