이 기사의 예에서는 jQuery가 addClass() 메서드를 사용하여 여러 클래스 스타일을 요소에 추가하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
jQuery는 addClass() 메서드를 통해 여러 클래스를 요소에 추가합니다. 추가된 클래스에서는 여러 클래스를 공백으로 구분하기만 하면 됩니다
<!DOCTYPE html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").addClass("important blue"); }); }); </script> <style type="text/css"> .important { font-weight:bold; font-size:xx-large; } .blue { color:blue; } </style> </head> <body> <div id="div1">This is some text.</div> <div id="div2">This is some text.</div> <br> <button>Add classes to first div element</button> </body> </html>
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.