我正在手动将标签注入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?
});