이 기사의 예에서는 jQuery가 어떻게 ToggleClass 메서드를 사용하여 클래스 스타일을 동적으로 추가하고 삭제하는지 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
jQuery는 ToggleClass 메서드를 통해 Class를 동적으로 추가하고 삭제합니다. 한 실행은 addClass와 동일하고 다른 실행은 RemoveClass와 동일합니다. 다음 코드를 실행하고 버튼을 클릭하면 파란색과 검정색 사이에서 전환되는 텍스트 단락 글꼴을 볼 수 있습니다.
<!DOCTYPE html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("h1,h2,p").toggleClass("blue"); }); }); </script> <style type="text/css"> .blue { color:blue; } </style> </head> <body> <h1>Heading 1</h1> <h2>Heading 2</h2> <p>This is a paragraph.</p> <p>This is another paragraph.</p> <button>Toggle class</button> </body> </html>
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.