從目標我需要拿起我只需要的數字。例如我有一個3位數的Number
,我想在第二個跨度中顯示第一個span
秒的第一個數字,就像這樣。如何從範圍對象中獲取所需的數字位數?
怎麼弄?有沒有一個過濾器的方法來做到這一點? 這裏是我的代碼:
var myApp = angular.module('myApp', []);
myApp.controller('count', function($scope) {
$scope.digital = 849;
$scope.total = 105631466;
});
HTML:
<div class="container" ng-app="myApp">
<div class="content" ng-controller="count">
<span class"firstDigit">{{digital}}</span><!-- only first digit(8) -->
<span class"secondDigit">{{digital}}</span> <!-- only second digit(4) -->
<span class"thridDigit">{{digital}}</span> <!-- only third digit(9) -->
<span>{{total}}</span> <!-- need to show like 75,688,6497 (adding commas) -->
</div>
</div>
' {{數字| number}}'會格式化它。 – PSL