如何在DOM上手动注入img标签

时间:2019-04-24 14:50:14

标签: javascript jquery dom

我正在手动将标签注入DOM,但是在对DOM中的此组件采取任何操作之前,我需要检查它是否已加载。为什么会这样?

let img = $("<img />").attr({
    src: 'path to img',
    name: 'name of img'
});

$("#myDIV").html(img);

$(img).one('load', function(){
    // why can i do action with 'img' only after being available in the DOM?
});

0 个答案:

没有答案