我在网页上使用第三方广告提供商。广告提供商将图像注入到我使用特定ID配置的div。我想在该图片上附加load
或ready
个事件。注意:我无法判断图像何时添加到DOM。
我尝试使用jquery:
$('body').on("load", "img", function (event) {
console.log(event);
});
而且:
$("img").on("load", function (event) {
console.log(event);
if (event.target == document.querySelector("#myDivId img")) {
console.log(event.target);
}
});
但它没有用。