이 문서의 예에서는 jQuery가 hide 메소드를 사용하여 요소 자체를 숨기는 방법을 설명합니다. 참조용으로 모든 사람과 공유됩니다. 세부 내용은 다음과 같습니다.
다음 JS 코드를 사용하면 버튼을 클릭한 후 버튼을 숨길 수 있습니다
<!DOCTYPE html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $(this).hide(); }); }); </script> </head> <body> <h2>This is a heading</h2> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button>Click me</button> </body> </html>
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.