JavaScript 초기초 처리를 외부 파일에 기재한다
목적
실시 조건
개요
상세
준비
아래 명령을 실행하여 JavaScript 파일을 만듭니다.
$ touch daialog_box.js
자바스크립트의 위치 변경
아래 명령을 실행하여 html 파일을 엽니다.
$ vi index.html
script 요소 안에 기재되어 있는 처리를 삭제해 JavaScript의 파일을 지정한다.
수정 전
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>JavaScript</h1>
<script>
window.alert('ダウンロードを開始します!');
</script>
</body>
</html>
수정 후
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>JavaScript</h1>
<script src="daialog_box.js">
</script>
</body>
</html>
아래 명령을 실행하여 JavaScript 파일을 엽니다.
$ vi daialog_box.js
이하의 내용을 기재한다.
daialog_box.js
window.alert('ダウンロードを開始します!');
확인
폴더에서 index.html을 찾아 두 번 클릭하여 엽니다.
브라우저가 시작되고 다음과 같은 대화 상자가 표시되는지 확인합니다.
Reference
이 문제에 관하여(JavaScript 초기초 처리를 외부 파일에 기재한다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/miriwo/items/36a2b719c8716c4b0d90텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)