Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 생성자
- 국제화
- 예외처리
- Menu
- struts2
- Eclips
- Graphic
- 클래스
- paint
- JavaScript
- 오버로딩
- JSP
- oracle
- Android
- 이클립스
- AWT
- 메서드
- Spring
- OGNL
- Java
- 에러페이지
- 기본
- 전화걸기
- 배열
- 메소드
- layout
- 어노테이션
- HTML
- 안드로이드
- mybatis
Archives
- Today
- Total
note
each() 메서드를 사용한 서로 다른 클래스 적용 / each() / addClass() 본문
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> .high_light_0{background:Yellow;} .high_light_1{background:Orange;} .high_light_2{background:Blue;} .high_light_3{background:Green;} .high_light_4{background:Red;} </style> <script src="http://code.jquery.com/jquery-1.7.js"></script> <script> $(document).ready(function () { $('h1').each(function (index,item){ $(item).addClass('high_light_' + index); }); }); </script> </head> <body> <h1>item - 0</h1> <h1>item - 1</h1> <h1>item - 2</h1> <h1>item - 3</h1> <h1>item - 4</h1> </body> </html>
each에서 인덱스를 받는데 밑에 <h1>태그가 인덱스가 부여된다
인덱스가 부여될때 each()메소드가 받아 위에 있는 스타일을 적용시킨다
더 많이 사용되는 방법
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> .high_light_0{background:Yellow;} .high_light_1{background:Orange;} .high_light_2{background:Blue;} .high_light_3{background:Green;} .high_light_4{background:Red;} </style> <script src="http://code.jquery.com/jquery-1.7.js"></script> <script> $(document).ready(function () { $('h1').each(function (index,item){ $(this).addClass('high_light_' + index); }); }); </script> </head> <body> <h1>item - 0</h1> <h1>item - 1</h1> <h1>item - 2</h1> <h1>item - 3</h1> <h1>item - 4</h1> </body> </html>
item -> this
'JavaScript > jQuery' 카테고리의 다른 글
eq()메서드 (0) | 2012.03.21 |
---|---|
$extend()메서드 (0) | 2012.03.20 |
addClass() 메서드 (0) | 2012.03.20 |
$.each() 메서드 사용 (0) | 2012.03.20 |
함수 필터 선택자 (0) | 2012.03.20 |