자바스크립트로 HTML 콘텐츠 출력

자바스크립트 코드로 HTML 콘텐츠를 웹 페이지에 직접 삽입하여 바로 브라우저 윈도우에 출력되게 할 수 있다.
코드가 실행되는 위치에 출력이 된다.

document.write()와 document.writeIn()
writeIn()는 '\n'을 덧붙여 출력한다. '\n'을 덧붙이는 효과는 다음 줄로 넘어가는게 아니라, 빈칸하나 추가이다.
다음줄은 <br> 태그를 출력해야한다.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>document.write() 활용</title>
</head>
<body>
<h3>document.write() 활용</h3>
<hr>
<script>
    document.write("<h3>Welcome!</h3>");
    document.write("2 + 5 는 <br>");
    document.write("<mark>7 입니다.</mark>");
</script>
</body>
</html>
 
cs


Posted by 너래쟁이
: