我需要在我的页面上使用计时器。我在document.ready
函数中写了下面的代码:
var timerForLoadingResult= window.setInterval('checkSearchIsCompleted()',4000)
function checkSearchIsCompleted() {
alert('test');
}
但它并不是每4秒调用一次该函数。它显示一个错误,表示找不到对象......问题是什么?
答案 0 :(得分:4)
正确的语法是单独传递函数名称:
var timerForLoadingResult = window.setInterval(checkSearchIsCompleted,4000);