Skip to content

window vs document

Title
window vs document
Category
Web API
Tags
Aliases
window vs documentwindow 객체와 document 객체
Related
Created
2 years ago
Updated
6 months ago
  • window 객체는 현재 브라우저의 창을 나타내는 객체이고, document는 현재 문서, DOM을 나타내는 객체이다.
  • window 내부에 document가 포함되고 그 외에도 필요한 전역 속성들과 메서드들이 있다.
  • DOMContentLoaded 이벤트는 document 객체에서 일어나고, load 이벤트는 window에서 일어나는 등의 차이도 있다.

Released under the MIT License.