Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Windows
- web.xml
- 줄바꿈 문자
- Windows 10
- Source
- ssh
- grep
- vscode
- tomcat
- netsh
- GIT
- lsof
- maVen
- Mac
- IntelliJ
- VirtualBox
- profile
- import
- Quartz
- plugin
- xargs
- 네트워크
- JavaScript
- find
- resource
- bash
- Eclipse
- context
- 단축키
- port
Archives
- Today
- Total
develog
[html] script 불러오기 종류, type="module", defer 본문
기본 스크립트
<script src="./my-lib.js"></script>
- HTML 파싱 차단함
- 즉시 실행
- HTML 순서대로 실행
- 전역 스코프
- import/export 사용 불가능
* 모듈 스크립트
<script src="./my-lib.js" type="module"></script>
- HTML 파싱 차단하지 않음
- HTML 파싱 후 실행
- HTML 순서대로 실행
- 모듈 스코프
- import/export 사용 가능
* 모듈 스크립트 + defer
<script src="./my-lib.js" defer type="module"></script>
- HTML 파싱 차단하지 않음
- HTML 파싱 완료 후 실행
- HTML 순서대로 실행
- 모듈 스코프
- import/export 사용 가능
Comments