상세 컨텐츠

본문 제목

JavaScript - 엘리먼트의 속성 추가하기 2 (setAttribute)

개발/JavaScript

by 뉴에이스 2020. 6. 3. 16:35

본문

    Dom API를 활용한 속성 추가하기
    setAttribute("키", 벨류) 

 

소스

 

<body>
	<button onclick="doAdd();">추가</button>
	<div id="list"></div>

	<script>
		function doAdd() {
			var list = document.querySelector("#list");

			// <img msg="test" width="" height="" src="" />
			// 자식이 없는 img 태그의 경우 속성을 추가
			var img = document.createElement("img");

			img.setAttribute("src", "https://www.google.co.kr/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png");
			img.setAttribute("width", 200);
			img.setAttribute("height", 150);
			// 사용자 정의 속성 추가 가능
			img.setAttribute("msg", "test");

			list.appendChild(img);
		}
	</script>
</body>

 

결과

 

 

관련글 더보기

댓글 영역