检测活动的javascript事件处理程序

时间:2011-08-12 16:50:08

标签: javascript events event-handling

如何检测文档当前处于活动状态的javascript事件处理程序?还是一个特定的元素?

1 个答案:

答案 0 :(得分:1)

使用jQuery:

var ele = $("#web"); // Replace with specified element

ele.click(function(){});
ele.mouseover(function(){});

$.each(ele.data("events"), function(i, e) {     
    alert(i); 
});

工作示例:http://jsfiddle.net/7HEuW/