note

문서 객체의 속성 지정 본문

JavaScript/기본

문서 객체의 속성 지정

투한 2012. 3. 16. 09:49








<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
	window.onload = function(){
		//변수를 선언합니다.
		var img = document.createElement('img');
		img.src = 'iu.jpg';
		img.width= 135;
		img.height= 180;
		//노드를 연결합니다
		document.body.appendChild(img);
	};
</script>
</head>
<body>

</body>
</html>