(在Chrome中)是否有一种简单的方法可以确定何时从元素中删除事件处理程序(用于单击)?我的一个事件处理程序神秘地消失了,但我不确定是否有一种快速简便的方法可以暂停或获得堆栈跟踪/异常。
答案 0 :(得分:6)
在调试环境中,运行此代码并查看console
。
(function () {
var ael = Node.prototype.addEventListener,
rel = Node.prototype.removeEventListener;
Node.prototype.addEventListener = function (a, b, c) {
console.log('Listener', 'added', this, a, b, c);
ael.apply(this, arguments);
};
Node.prototype.removeEventListener = function (a, b, c) {
console.log('Listener', 'removed', this, a, b, c);
rel.apply(this, arguments);
};
}());
如果需要查看更多信息,您可能还需要致电console.trace
或为功能指定名称,以便.caller
使用arguments.callee
折旧,因此使用名称来引用自我)