javascript – setTimeout(有趣)只有一个参数? (未指定超时)

前端之家收集整理的这篇文章主要介绍了javascript – setTimeout(有趣)只有一个参数? (未指定超时)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
HTML5 specifications声明setTimeout可以在没有附加“timeout”参数的情况下运行,该参数应该在调度函数“handler”之后多少毫秒之后说明.
handle = window . setTimeout( handler [,timeout [,arguments ] ] )
   Schedules a timeout to run handler after timeout milliseconds. Any arguments are passed straight through to the handler.

但是,我没有找到解释当没有设置“超时”时间段时会发生什么的任何地方.

一个示例用法animation implementation在Raphael库中.

animationElements[length] && win.setTimeout(animation);

解决方法

http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#get-the-timeout
  1. Let timeout be the second argument to the method,or zero if the argument was omitted.
原文链接:https://www.f2er.com/js/156421.html

猜你在找的JavaScript相关文章