요소.outerHTML
요소 HTML
outerHTML 속성은 innerHTML과 달리 자신도 대상이 될 수 있으며, 자신의 HTML을 가져오거나 변경할 수 있습니다.
index.html
<div>오늘의 날씨</div>
<p id="weather-information">비 <span class="temperature">16도</span></p>
<div class="tag-div-test">변경하기</div>
script.js
const weatherInformation = document.querySelector('#weather-information');
console.log(weatherInformation.outerHTML);
weatherInformation.outerHTML = '<img src="image_content.jpg"></img>';