我正在尝试使用以下代码来增加文本框中的数字
// Animate the element's value from 0 to 1100000:
$({someValue: 0}).animate({someValue: 1100000}, {
duration: 1000,
step: function() { // called on every step
// Update the element's text with value:
$('#counterx').text(Math.floor(this.someValue+1));
}
});
它适用于从 0 到 100 之类的小数字,但是当涉及到上述代码中的大数字时,它没有给出目标数字,而是为 1099933 或 1099610 或.....等数字设置动画,并且每次它改变。
那么我怎样才能让它动画到我指定的数字呢?