动态添加图像的“加载”事件

时间:2015-04-13 13:08:18

标签: javascript jquery image web

我在网页上使用第三方广告提供商。广告提供商将图像注入到我使用特定ID配置的div。我想在该图片上附加loadready个事件。注意:我无法判断图像何时添加到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);
    }
});

但它没有用。

0 个答案:

没有答案