DOMContentLoaded
load
beforeunload
unload
document
객체에서 발생addEventListener
로 핸들러 등록 필요 (on 프로퍼티 사용 불가)<script>
태그를 만나면 DOM 트리 구성 멈추고 스크립트 실행async
속성이 있는 스크립트는 DOMContentLoaded를 막지 않음document.createElement('script')
)는 DOMContentLoaded를 막지 않음일반적으로 외부 스타일시트는 DOMContentLoaded를 막지 않음
예외: 스타일시트 다음에 위치한 스크립트는 스타일시트 로드될 때까지 실행되지 않음
html
복사
<link type="text/css" rel="stylesheet" href="style.css">
<script>
// 스타일시트가 로드될 때까지 실행되지 않음
</script>