jq에는 관련 데이터를 DOM 요소에 바인딩하는 데이터 메서드가 있습니다. jq 메서드를 사용하여 이벤트가 dom에 바인딩되면 해당 시간 목록이 생성됩니다 다음 예를 볼 수 있습니다(firefox의 객체는 toSource()를 지원하므로 Firefox에서 확인하세요) 코드 복사 코드는 다음과 같습니다. 머리> http://common.cnblogs.com/script/jquery.js">> <br> window.onload = function(){<br> Alert($.data($('#test')[0],'events'));//null<br> Alert($.data($('#test')[0],'handle'));//null<br> $('#test')<br> .bind('클릭',function(){<br> 경고(1)<br> })<br> .bind('mouseover',function(){<br> 경고(2)<br> })<br> .bind('클릭',function(){<br> 경고(3)<br> })<br> .bind('클릭',function(){<br> 경고(4)<br> })<br> Alert($.data($('#test')[0],'events').toSource());//시간 목록<br> Alert($.data($('#test')[0],'handle').toSource());//실행된 함수<br> }<br> <br> </본문><br> </div>