note

is()메서드 본문

JavaScript/jQuery

is()메서드

투한 2012. 3. 21. 09:56








<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<script src="http://code.jquery.com/jquery-1.7.js"></script>
<script>
	$(document).ready(function (){
		$('h1').each(function () {
			if($(this).is('.select')){
				$(this).css('background' , 'Orange');
			}
		});
	});
</script>
<body>
	<h1 class="select">Header-0</h1>
	<h1>Header-1</h1>
	<h1 class="select">Header-2</h1>
</body>
</html>



this는 선택되어지는 h1 태그를 말함
is()는 클래스에 select가 있느냐 없느냐의 차이를
bg를 Orange로 적용 





'JavaScript > jQuery' 카테고리의 다른 글

addClass()메서드 / addClass() 메서드의 콜백함수  (0) 2012.03.21
XML 파싱  (0) 2012.03.21
add()메서드  (0) 2012.03.21
eq()메서드  (0) 2012.03.21
$extend()메서드  (0) 2012.03.20