好的,我有一些代码
$.get('results1.html', function(data) {
$('#search-results').html(data);
}).complete(function() {
BlockStuffNow();
});
BlockStuffNow();是一个对已经加载到#search-results中的图像进行操作的函数,但它只能在加载后才对它们进行操作,如何查看它们是否已被加载?
答案 0 :(得分:1)
您可以使用简单加载,然后运行回调函数...
$("#search-results").load("results1.html",function(){
$('img').load(function(){
BlockStuffNow();
})
});