gpt4 book ai didi

javascript - countUp() 和 countUp 之间的区别

转载 作者:行者123 更新时间:2023-11-28 12:00:14 26 4
gpt4 key购买 nike

我有一个脚本,可以像这样每 1 秒计算一个框中的数字(实际上,在本练习中 -> what is the difference between calling function in JavaScript with or without parentheses () )。

var target = $("#target input");
var countUp = function(){
target.val(parseInt(target.val())+1);
setTimeout(countUp,1000); // this line
};

countUp();

我的问题是,当我在用 countUp 标记的行将 countUp() 更改为 // this line 时,它​​立即计数到 15616。它们之间有什么区别?

最佳答案

countUp 将函数作为对象引用。在 JavaScript 中,一切都是对象,包括函数,并且可以传递。 countUp() 调用函数 countUp 并返回其值。

关于javascript - countUp() 和 countUp 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16949879/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com