1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h3>document 활용</h3><hr>
<script>
//객체 document 는 웹페이지 그 자체
document.write("<h3>Welcome!</h3>");
document.write("2+3=<br>");
document.write("<mark>7입니다.</mark><br>");
t=document.title;
document.write(t);
a = document.anchors.length;
document.write(a);
</script>
</body>
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
'Javascript' 카테고리의 다른 글
비교 연산자, 논리 연산자 // Comparison operator, Logical operator (0) | 2020.03.09 |
---|---|
산술 연산자 // Arithmetic Operators (0) | 2020.03.09 |
상수 //literal (0) | 2020.03.09 |
3 지역변수, 전역변수 ..... (0) | 2020.03.09 |
Javascript 작성 방법 3가지 (0) | 2020.03.09 |