我的javascript代码存在一些问题,需要使用开发人员工具(Google Chrome)跟踪jQuery事件绑定。 你知道一些插件或工具吗?
P.S。 Chrome开发者工具事件跟踪跟踪javascript事件。 jQuery事件更加困难
答案 0 :(得分:1)
没有区别..只需将事件注销到控制台,甚至可以使用一个很好的小功能:
var log = function(e){
console.log(e)
}
$('#element).eventListener(log);
或内联:
$('#element).eventListener(function(e){
console.log(e);
});
如果您想查看事件气泡的目标,请使用currentTarget - http://api.jquery.com/event.currenttarget/