setTimeout有一个局部变量?

时间:2014-11-28 20:37:17

标签: javascript

function doAnimation(element, stuff){           
    setTimeout(animate(element, stuff), 1000);              
    }

function animate(element, stuff) {
}

我的问题有一个简单的解决方案吗?我到处寻找但找不到我要找的东西。

1 个答案:

答案 0 :(得分:2)

试试这个,

function doAnimation(element, stuff){           
  setTimeout(function () { animate(element, stuff) }, 1000);              
}

function animate(element, stuff) {
}