Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

GlobalEventHandlers.onload

摘要

window load 事件的事件处理程序。

语法

window.onload = funcRef;
  •  当 window  load  事件触发时,funcRef 方法会被调用。

示例

window.onload = function() {
  init();
  doSomethingElse();
};
<!doctype html>
<html>
  <head>
    <title>onload test</title>
    <script>
      function load() {
        alert("load event detected!");
      }
      window.onload = load;
    </script>
  </head>
  <body>
    <p>The load event fires when the document has finished loading!</p>
  </body>
</html>

注意

在文档装载完成后会触发  load 事件。此时,在文档中的所有对象都在DOM中,所有图片,脚本,链接以及子框都完成了装载。 

同时也会有 Gecko-指定 DOM事件,如 DOMContentLoaded 和 DOMFrameContentLoaded (它们可以使用 EventTarget.addEventListener() 来处理 ) , 这些事件在页面DOM构建起来后就会触发,而不会等到其他的资源都装载完成。 

规范

这个事件处理程序在  HTML 中指定。

参见

文档标签和贡献者

 此页面的贡献者: teoli, khalid32, ReyCG_sub
 最后编辑者: khalid32,