Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
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 30
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter01 : DOM개요 본문

WEB.JS/08.DOM_JS

chapter01 : DOM개요

GAWON 2023. 5. 23. 09:16
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
onload = function(){   //기본값 DOM 시작 파일 만들면 첫 번째로 만들어주세요
var msg = document.getElementById("title");
document.write("<hr>");
document.write(msg.innerHTML);    [//msg.innerHTML](https://msg.innerhtml/) = "안녕하세요"
document.write("<hr>");
}

</script>
</head>
<body>
<h1 id="title">홈페이지에 오신 걸 환영합니다</h1>
</body>
</html>

'WEB.JS > 08.DOM_JS' 카테고리의 다른 글

chapter02 : DOM생성  (0) 2023.05.23
chapter03 : DOM생성  (0) 2023.05.23
chapter04 : DOM생성  (0) 2023.05.23
chapter05 : DOM삭제  (0) 2023.05.23
chapter06 : DOM_getElementById  (0) 2023.05.23