如何检查是否加载了附加 HTML 的所有图像?代码如下所示:
$.ajax({
url: "../api/listings",
type: 'GET',
success: function (html) {
$('#container').append(html);
};
});
$newItems
包含一些IMG。加载后我需要运行一个函数。我尝试将此添加到成功功能:
$('#container').on('load', function(){console.log('hello world!')});
但它没有用