html() 메서드는 선택한 요소의 HTML 콘텐츠를 가져오거나 입력 또는 수정하는 데 사용됩니다.
<div id=’myDiv’><p>This is some initial content.</p></div>
이제 #myDiv 요소의 HTML 콘텐츠를 변경한다고 가정해 보겠습니다.
// Set new HTML content for the #myDiv element
$(“#myDiv”).html(“This is the updated content.”);
위 코드를 실행하면 ‘#myDiv’ 요소의 HTML 콘텐츠가 새 콘텐츠로 대체됩니다.
<div id=’myDiv’><p>This is the updated content.</p></div>
따라서 html() 메서드를 사용하면 선택한 요소의 HTML 콘텐츠를 쉽게 가져오거나 바꿀 수 있습니다.