setTimeout()递归调用不加引号出错的解决方法

时间:2022-02-10 08:26:44

用了setTimeout()想实现递归调用,如果第一个参数不加引号的话,火狐提示setTimeout():uselesssetTimeout call (missing quotes around argument?)如果加引号的话 ,火狐会提示那个函数undefined

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function refreshNum() {
$.ajax({
type: "POST",
url: "ajax/RefreshNum.ashx",
async: false,
data: {},
success: function (data) {
varnumArry = data.split(',');
$.each($(".rush_left"), function (n) {
$(this).children().eq(0).html(numArry[n]);
});
setTimeout(function () { refreshNum(); }, 3000);
//setTimeout("refreshNum",3000); //这样写就会出错,setTimeout()函数的参数,第一个一定不要用简单的函数调用,而是使用匿名函数!至于为什么就不知道了
}
});
 
}
refreshNum();