ページ上の要素内の数値をインクリメントしようとしています。しかし、1000位の値にコンマを含めるための数値が必要です。 (例:45000ではなく45,000)
<script>
// Animate the element's value from x to y:
$({someValue: 40000}).animate({someValue: 45000}, {
duration: 3000,
easing:'swing', // can be anything
step: function() { // called on every step
// Update the element's text with rounded-up value:
$('#el').text(Math.round(this.someValue));
}
});
</script>
<div id="el"></div>
カンマ付きのアニメーションを使用して数値をインクリメントするにはどうすればよいですか?
作業デモhttp://jsfiddle.net/4v2wK/
必要に応じて自由に変更してください。通貨フォーマッターも確認できます。これがニーズに合うことを願っています:)
コード
// Animate the element's value from x to y:
var $el = $("#el"); //[make sure this is a unique variable name]
$({someValue: 40000}).animate({someValue: 45000}, {
duration: 3000,
easing:'swing', // can be anything
step: function() { // called on every step
// Update the element's text with rounded-up value:
$el.text(commaSeparateNumber(Math.round(this.someValue)));
}
});
function commaSeparateNumber(val){
while (/(\d+)(\d{3})/.test(val.toString())){
val = val.toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,");
}
return val;
}
**出力*
また、次のような完全な関数を追加する必要があります。
step:function(){
//..
},
complete:function(){
$el.text(commaSeparateNumber(Math.round(this.someValue)));
}
更新されたフィドル: デモ