웹코딩/javascript

document 로드 상태 확인

quantumcode 2024. 8. 26. 21:45
728x90

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 loading. We can now access the DOM elements.
    // But sub-resources such as images, stylesheets and frames are still loading.
    var span = document.createElement("span");
    span.textContent = "A <span> element.";
    document.body.appendChild(span);
    break;
  case "complete":
    // The page is fully loaded.
    console.log(
      "The first CSS rule is: " + document.styleSheets[0].cssRules[0].cssText,
    );
    break;
}

 

로드 이벤트 대안으로 onreadystatechange 사용

// Alternative to DOMContentLoaded event
document.onreadystatechange = function () {
  if (document.readyState === "interactive") {
    initApplication();
  }
};


// Alternative to load event
document.onreadystatechange = function () {
  if (document.readyState === "complete") {
    initApplication();
  }
};


document.addEventListener("readystatechange", (event) => {
  if (event.target.readyState === "interactive") {
    initLoader();
  } else if (event.target.readyState === "complete") {
    initApp();
  }
});

 DOM이 로드 되기전에 요소를 삽입하거나 수정하기 위해서 이벤트리스너로 onreadystatechange를 사용하세요.

 

참고:  mdn web docs https://developer.mozilla.org/ko/docs/Web/API/Document/readyState

'웹코딩 > javascript' 카테고리의 다른 글

async , await 정의 및 사용방법  (0) 2024.08.18
clipboard copy code  (0) 2024.08.16
JSON.stringify() 사용법  (0) 2024.08.15
slick slider : 반응형 구현  (0) 2024.08.06
split/substr/substring  (0) 2022.04.13