7

HTML5 规范声明可以在没有额外的“超时”参数的情况下运行,该setTimeout参数应该说明函数“处理程序”将在多少毫秒后被调度。

handle = window . setTimeout( handler [, timeout [, arguments ] ] )
   Schedules a timeout to run handler after timeout milliseconds. Any arguments are passed straight through to the handler.

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

一个示例用法是Raphael 库中的动画实现。

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

1 回答 1

15

http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#get-the-timeout

  1. 让 timeout 成为该方法的第二个参数,或者如果参数被省略则为零。
于 2010-04-27T17:51:43.207 回答