我只知道setInterval在ie6下最低调用间隔时间是16ms,如果是ff,chrome,opera是多少呢?
光阴似箭催人老,日月如移越少年。
试试这段代码就知道了:
function test() { var s = +new Date(); function step() {var n = +new Date(); console.log(n - s); s = n;} setInterval(step, 0); }
试试这段代码就知道了: