본문 바로가기

sundries

3-1 addClass() 콜백 함수

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

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

</head>

<style>

.item0{background:orange}

.item1{background:yellow}

.item2{background:pink}

</style>

<script>

$(function(){

//each()처럼 $() 갯수 만큼 돈다.

$('h1').addClass(function(index){

alert();

return 'item' + index;

})

})

</script>

<body>

<h1>Header-0</h1>

<h1>Header-1</h1>

<h1>Header-2</h1>

</body>

</html>