jQuery w3schools 한글판 강좌57- jQuery addClass() Method 정보
jQuery jQuery w3schools 한글판 강좌57- jQuery addClass() Method본문
jQuery w3schools 한글판 강좌57- jQuery addClass() 메소드
다음 예는 클래스 속성을 다른 요소에 추가하는 방법을 보여줍니다.
물론 클래스를 추가할때 여러개의 요소들을 선택할수 도 있습니다.
Example
$("button").click(function(){
$("h1, h2, p").addClass("blue");
$("div").addClass("important");
});
$("h1, h2, p").addClass("blue");
$("div").addClass("important");
});
또한 여러개의 클래스들을 addClass()메소드안에 지정할수도 있습니다:
Example
$("button").click(function(){
$("#div1").addClass("important blue");
});
$("#div1").addClass("important blue");
});
추천
0
0
댓글 0개