02.html-실행위치(head태그)
CODEDRAGON ㆍDevelopment/JavaScript, jQuery, ...
반응형
02.html-실행위치(head태그)
1) 실행위치(body태그)
2) 실행위치(head태그)
실행파일을 외부 파일에 명시하고 링크하기
File Info
02.html
script.js
소스 코드 - 02.html
<html>
<head>
<meta charset="UTF-8">
<title>실행파일을 외부 파일에 명시하고 링크하기</title>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
</body>
</html>
소스 코드 - script.js
document.write('script.js에 있는 코드 실행');
출력결과
'Development > JavaScript, jQuery, ...' 카테고리의 다른 글
자바스크립트 오류 확인 및 수정방법 (0) | 2021.12.16 |
---|---|
script.js -인코딩 UTF-8로 설정 (0) | 2021.12.16 |
01.html-실행위치(body태그) (0) | 2021.12.15 |
자바스크립트 변수관련 강의 맵 - ch01-variable, 자바스크립트 변수 (0) | 2021.12.15 |
[WebStorm] 디버깅 하기 (0) | 2021.12.15 |