$(".event").each(function() { // 모든 event 클래스 숨기기
	$(this).hide();
});

var randomNum = getRandom(4); // 특정 요소 처리하기
$(".event").each(function(index, value) {
	if(randomNum == index) {
		$(this).append("index value test");
		return false;
	}
});
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,