는 누군가가 지정하는 이벤트 핸들러의 차이) (바인드를 사용하여 무엇을 말해 줄 수 :jQuery에서 bind() 및 each()를 사용하여 이벤트 처리기를 할당하는 것의 차이점은 무엇입니까?
$(function(){
$('someElement')
.bind('mouseover',function(e) {
$(this).css({
//change color
});
})
.bind('mouseout',function(e) {
$(this).css({
//return to previous state
});
})
.bind('click',function(e) {
$(this).css({
//do smth.
});
})
});
과 같은 작업을 위해()를 각각 사용 :
$('someElement').each(function(){
$(this).mouseover(function(){$(this).css({/*change color*/})
.mouseout(function(){$(this).css({/*return to previous state*/});
});
});
});
당신을 감사합니다.
두 번째 예는 '각'방법을 설명하지 않습니다. 그냥 알다시피 ... – KyleFarris
오, 고쳐 줄게. ty – chosta