readyState 속성을 사용하여 제어 할 수 있다. readyState속성은 document 객체의 속성이며loading, interactive, complete 3가지 상태를 가지고 있다. loading : document 로딩 중interactive : 문서의 로딩은 끝이 나고 해석 중 이지만 images, stylesheets, frames과 같은 하위 자원들은 로딩되고 있는 상태이다.complete : 로딩 완료 사용 예시:switch (document.readyState) { case "loading": // The document is still loading. break; case "interactive": // The document has finished ..