간단한 숨김 및 표시 코드는 다음과 같습니다. 코드 복사 코드는 다음과 같습니다. <br> $(문서).ready(함수(){<br> $("#hide").click(function(){<br> $("p").hide();<br> });<br> $("#show").click(function(){<br> $("p").show();<br> });<br> });<br> <br> </머리><br> <br> <p id="p1">'숨기기' 버튼을 클릭하면 사라집니다. <br> <button id="hide" type="button">숨기기</button><br> <button id="show" type="button">show</button><br> </본문><br> </div>