하나의 클래스로 3 개의 div 요소가 있는데, 그 중 하나를 가리키면 내부 요소의 배경을 빨간색으로 바꿔야한다고 가정 해 봅시다. 그래 나도 알아 ... 난 ',Jquery 호버링 문제
<div class="content"><div class="yellow_hover"></div></div>
<div class="content"><div class="yellow_hover"></div></div>
<div class="content"><div class="yellow_hover"></div></div>
jQuery를
$('.content').each(function(i, div) {
div.id="div" + (i+1);
});
<div class="content" id="div1"></div>
<div class="content" id="div2"></div>
<div class="content" id="div3"></div>
지금 나는이 같은 뭔가가 필요 결과 :이 같은 각 요소에 대한 ID를 추가하는 tryed 분실 :
$(div+i).hover(function() {
$('.yellow_hover').css('background-color','#FF9900');
});
에 대한 클래스 (yellow_hover)
참조 JQuery와 문서를 추가는 정말 결과인가? .yellow_hover DIV가 죽으면 사라질까요? – Nenotlep