본문 바로가기

sundries

1-18 위치 필터 선택자 odd, even

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<style>

body{margin: 50px autowidth:500px}

table{margin: 20px auto;

border-collapse:seperate;

text-align:center}

tr{height:50px;} 

</style>

<script src ="../js/jquery-3.2.1.js"></script>

<!--  

위치 필터 선택자 : 위치와 관련된 필터 선택자

요소 : odd( 홀수번째 위치한 문서 객체를 선택, 1,3,5..)

요소 : even( 홀수번째 위치한 문서 객체를 선택, 0,2,4,6..)

-->

</head>

<script>


$(function(){

 $('tr:odd').css('background','red');  

 $('tr:even').css('background','green');  

 $('tr:first').css('background','black').css('color','white');

});

</script>

<body>

<table>

<caption> 추천 도서 표 </caption>

<thead>

<tr>

<th>짝/홀</th>

<th>책 제목</th>

<th>작가</th>

<th>가격</th>

</tr>

</thead>

<tfoot> 

<tr>

<td></td>

<th></th>

<th>2권</th>

<td>30,000원</td>

</tr>

</tfoot> <!--표의 헤더 영역부분 -->

<tbody>

<tr>

<td></td>

<th>스티브잡스</th>

<td>월터아이작슨 저, 안진환 역</td>

<td>25,000원</td>

</tr>

<tr>

<td></td>

<th>나를 지키는 말 88</th>

<td>손화신, 쌤앤파커스</td>

<td>25,000원</td>

</tr>

<tr>

<td></td>

<th>언어의 마술사</th>

<td>해냄인터내셔널</td>

<td>25,000원</td>

</tr>

</tbody><!-- 표의 내용 영역 부분 -->

</table>

</body>

</html>