我有一个脚本,可以像这样每 1 秒计算一个框中的数字(实际上,在这个练习中 - > http://jqexercise.droppages.com/#page_0022_ )。
var target = $("#target input");
var countUp = function(){
target.val(parseInt(target.val())+1);
setTimeout(countUp,1000); // this line
};
countUp();
我的问题是,当我更改countUp
为countUp()
我标记的行时// this line
,它立即计数到 15616。它们之间有什么区别?