document.readyState

Introduced in Gecko 1.9.2

(Firefox 3.6 / Thunderbird 3.1 / Fennec 1.0)

Returns "loading" while the  document   is loading, and "complete" once it has loaded.

Syntax

var string
 = document.readyState;

Example

view plain print ?
  1. // alternative to DOMContentLoaded   
  2. document.onreadystatechange = function  () {  
  3.     if  (document.readyState ==  "complete" ) {  
  4.         initApplication();  
  5.     }  
  6. }  

See Also

  • document.onreadystatechange
document.readyState:判断文档是否加载完成, firefox在3.6以上版本才支持。
这个属性是只读的,传回值有以下的可能:
0-UNINITIALIZED:XML 对象被产生,但没有任何文件被加载。
1-LOADING:加载程序进行中,但文件尚未开始解析。
2-LOADED:部分的文件已经加载且进行解析,但对象模型尚未生效。
3-INTERACTIVE:仅对已加载的部分文件有效,在此情况下,对象模型是有效但只读的。
4-COMPLETED:文件已完全加载,代表加载成功。

示例
document.onreadystatechange = function() { if (document.readyState == "complete") { // 当页面加载状态为完全结束时进入 // 你要做的操作。 } else if (document.readyState == "loading") { } }

你可能感兴趣的:(document.readyState)