Home > Q&A > body text
我只知道setInterval在ie6下最低调用间隔时间是16ms,如果是ff,chrome,opera是多少呢?
迷茫2017-04-10 14:26:18
试试这段代码就知道了:
function test() { var s = +new Date(); function step() {var n = +new Date(); console.log(n - s); s = n;} setInterval(step, 0); }