このスクリプトはスパンに追加する数値までカウントしますが、後でカンマを11,000に追加します。このカウンタースクリプトに1000の数値にカンマを追加するにはどうすればいいですか
toFixed
を追加しようとしたが、それは助けていない場合: $(this).text(Math.ceil(now).toFixed(3));
$('.counter').each(function() {
$(this).prop('Counter', 0).animate({
Counter: $(this).text()
}, {
duration: 7000,
easing: 'swing',
step: function(now) {
$(this).text(Math.ceil(now));
stop();
$(this).removeClass('counter');
}
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="number">
<span class="count counter">100</span>
</div>
<div class="number">
<span class="count counter">11000</span>
</div>