JavaScript

210923_document.body

요옫 2021. 9. 23. 11:30

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<script type="text/javascript">

window.onload=function(){

var inner=document.body.innerHTML;  //html의 요소를 body에 출력

 

//console.log(inner);

document.write(inner);

}

 

</script>

</head>

<body>

<h2>Dom</h2>

</body>

</html>

 

document.write(inner);  출력
console.log(inner);  출력

 

'JavaScript' 카테고리의 다른 글

210923_event  (0) 2021.09.23
210923_button  (0) 2021.09.23
210923_getElementById,window.onload  (0) 2021.09.23
210923_list+inner  (0) 2021.09.23
210923_전역변수,지역변수  (0) 2021.09.23