<!DOCTYPE html>

<html>

<head>

<style>

div

{

width: 60px;

height: 60px;

margin: 10px;

float: left;

border: 2px solid blue;

}

.blue { background: blue; }

</style>

<script src="http://code.jquery.com/jquery-latest.js"></script>

</head>

<body>

<div></div>

<div></div>

<div></div>

<div></div>

<div></div>

<div></div>

<script type="text/javascript">

//"body"엘리먼트 내부에서 "div"엘리먼트를 찾고

//eq()를 이용해 "2"의 인덱스를 갖는 목표에 클래스를 추가한다.

$("body").find("div").eq(2).addClass("blue");

</script>

</body>

</html>


14-3_Filtering.html


반응형

+ Recent posts