我正在调试这段代码。我想知道如何查看附加到哪个处理程序img
。
img.unbind('error').bind('error', function() {
img.unbind('error').attr('src', 'img/cover-empty.png');
});
我想使用打印结果console.log()
我正在调试这段代码。我想知道如何查看附加到哪个处理程序img
。
img.unbind('error').bind('error', function() {
img.unbind('error').attr('src', 'img/cover-empty.png');
});
我想使用打印结果console.log()
因为你没有提到 img 的 id 或 class
$.each($("<img selector>").data("events"), function(e, event) {
$.each(event, function(a, obj) {
console.log(obj.handler);
});
});
var events = $(img).data("events");
console.log(events); // -> Object { error=[1] }
看小提琴