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.

load

loadイベントは、リソースおよびその依存リソースの読み込みが終わると発生します。

概要

仕様
DOM L3
インターフェイス
UIEvent
浮上(bubble)
しない
キャンセル可能(cancelable)
不可
ターゲット
Document, Element
デフォルトアクション
なし

プロパティ

プロパティ 説明
target 読取専用 EventTarget イベントターゲット (DOM ツリー内最上位の対象)
type 読取専用 DOMString イベントの型
bubbles 読取専用 Boolean 通常時のバブリングの有無
cancelable 読取専用 Boolean イベントのキャンセルの可否
view 読取専用 WindowProxy document.defaultView (document の window
detail 読取専用 long (float) 0.

<script>
  document.addEventListener("load", function(event) {
    console.log("All resources finished loading!");
  });
</script>

注記: イベントリスナーはwindow.addEventListener()メソッドで加える方がより確実です。

関連イベント

ドキュメントのタグと貢献者

 このページの貢献者: FumioNonaka
 最終更新者: FumioNonaka,