<!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>
'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 |