본문 바로가기
2019/JavaScript

JS 기본 사용

by SOLYI 2019. 12. 5.

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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
 
             ★
</head>
<body>
 
 
</body>
</html>
 
 
// 자바 스크립트는 head와 body 사이에 사용 가능
 
// css와 마찬가지로, 별도페이지에서 불러올수 있다.
  <link rel="stylesheet" href="style/main2.css">
  <script src="js/main.js">
  </script>
 
// 일반 주석
 
/*
     블럭 단위 주석 
                     */
 
cs
반응형

'2019 > JavaScript' 카테고리의 다른 글

JS switch  (0) 2019.12.05
JS if  (0) 2019.12.05
JS Onclick  (0) 2019.12.05
JS 산술 연산자  (0) 2019.12.05
JS 변수와 타입  (0) 2019.12.05