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.

document.readyState

概要

文書の読み込み状況を示す文字列を返します。
document が読み込み中の場合は "loading"
パースが完了したがまだサブリソースが読み込み中の時点では "interactive"
サブリソースの読み込みも完了した時点で "complete" となります。

このプロパティの値が変化する時には、 document オブジェクトの readystatechange が発生します。

構文

var string = document.readyState;

// DOMContentLoaded イベントの代替
document.onreadystatechange = function () {
  if (document.readyState == "interactive") {
    initApplication();
  }
}
// load イベントの代替
document.onreadystatechange = function () {
  if (document.readyState == "complete") {
    initApplication();
  }
}

仕様書

関連情報

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

タグ: 
 このページの貢献者: fscholz, AshfaqHossain, ethertank
 最終更新者: AshfaqHossain,