JQueryJQuery each와 thisOn this pageJQuery each와 this .each() 배열을 관리하고자 할 때 사용 $(this) this는 DOM 오브젝트를 의미 $()함수에 전달하면, 이벤트가 발생한 자기 자신을 가르킨다. <p>안녕하세요</p><p>반갑습니다</p><p>JJamVa</p> $("p").each(function () { const text = $(this).html(); $(this).html(text + "!!");});