반응형
<!DOCTYPE html>
<html>
<head>
<style>
table {
background:#eeeeee;
}
</style>
<script src="http://code.jquery.com/jquery-1.4.4.js"></script>
</head>
<body>
<table border="1">
<tr><td>Row with Index #0</td></tr>
<tr><td>Row with Index #1</td></tr>
<tr><td>Row with Index #2</td></tr>
<tr><td>Row with Index #3</td></tr>
</table>
<script>$("tr:even").css("background-color", "#bbbbff");
</script>
</body>
</html>
## :even 은 요소 집합 세트에서 색인 번호가 짝수인 요소를 선택합니다. 0 을 포함 함.
반응형
'# Work > └ jQuery' 카테고리의 다른 글
show & hide (0) | 2012.04.26 |
---|---|
jquery 내용 정리 (0) | 2012.04.18 |
첫번째 자식 선택하여 스타일 주기. (0) | 2012.04.18 |
클래스명으로 선택하여 스타일 주기 (2) | 2012.04.16 |
jQuery 기초 (0) | 2012.01.04 |