"JQuery .removeClass()"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
==개요==
==개요==
;jQuery .removeClass()
;jQuery .removeClass()
*클래스 제거 함수
*CSS 클래스 제거 함수
*HTML 요소에서 CSS class를 제거하는 jQuery 메소드
*HTML 요소에서 CSS class를 제거하는 jQuery 메소드



2015년 9월 20일 (일) 15:03 판

1 개요

jQuery .removeClass()
  • CSS 클래스 제거 함수
  • HTML 요소에서 CSS class를 제거하는 jQuery 메소드

2 예시

html
Copy
<style>
.highlight { background: yellow; }
</style>
 
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(function() {
	$("p").last().removeClass( "highlight" );
});
</script>
 
<p class='highlight'>Hello</p>
<p class='highlight'>and</p>
<p class='highlight'>Goodbye</p>

3 같이 보기

4 참고 자료