标签: javascript events event-handling
如何检测文档当前处于活动状态的javascript事件处理程序?还是一个特定的元素?
答案 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/