JavaScript 슈퍼 기초 대화 상자 표시
목적
전제 정보
개요
상세
준비
다음 명령을 실행하여 모든 디렉토리에 파일을 만듭니다.
$ touch index.html
아래 명령을 실행하여 파일을 엽니다.
$ vi index.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>
</body>
</html>
JavaScript 기재
다음 내용은
<body>
요소에 설명되어 있습니다.index.html
<script>
window.alert('ダウンロードを開始します!');
</script>
기재 후의 index.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>
window.alert('ダウンロードを開始します!');
</script>
<!-- 上記までを追記する -->
</body>
</html>
확인
폴더에서 index.html을 찾아 두 번 클릭하여 엽니다.
브라우저가 시작되고 다음과 같은 대화 상자가 표시되는지 확인합니다.
Reference
이 문제에 관하여(JavaScript 슈퍼 기초 대화 상자 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/miriwo/items/588c318740a9b169044f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)