jquery1.10은 .live() 메서드를 제거하고 이벤트를 요소에 바인딩하는 새로운 .on() 메서드를 추가합니다. 구체적인 사용법은 다음과 같습니다.
on(events,[selector],[data], fn )
$("#dataTable tbody tr ").on ("click", function(event){
alert($(this).text());
});
위 메서드는 모든 tr을 바인딩합니다. 이벤트가 설정되었지만 새로 추가된 요소에 이벤트를 바인딩할 수 없습니다.
$("#dataTable tbody"). on(" click", "tr", function(event){
alert($(this).text());
})
위 메서드는 tbody를 바인딩합니다. 이벤트가 생성되고, 그 안의 tr이 새로운 요소라면 클릭 이벤트가 균일하게 발생될 수 있습니다.