search

Home  >  Q&A  >  body text

javascript的setInterval浏览器调用间隔时间是多少?

我只知道setInterval在ie6下最低调用间隔时间是16ms,如果是ff,chrome,opera是多少呢?

大家讲道理大家讲道理2901 days ago405

reply all(1)I'll reply

  • 迷茫

    迷茫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);
    }
    

    reply
    0
  • Cancelreply