jquery:当ajax加载的内容全部加载(包括图像)时的事件
我通过ajax加载了一些html,我需要一个事件来追踪新图像何时加载...
因为它是在一个div而不是整个页面,我不能使用$(window).load(....
我试过以下,但它不起作用:
$('.banners_col img:last').load(function(){.....
在将它们插入到dom之前,您需要定位ajax调用的结果。
所以你需要使用jQuery提供的回调方法。
$('#load').click(function(){
// inside the handler that calls the ajax
//you ajax call here
$.get('the_url_to_fetch',function(data){
// create an in-memory DOM element, and insert the ajax results
var $live = $('<div>').html(data);
// apply a load method to the images in the ajax results
$('img',$live).load(function(){
// what to do for each image that is loaded
});
// add the ajax results in the DOM
$('selector_where_to_put_the_response').html($live.children());
});
});
例如http://www.jsfiddle.net/gaby/Sj7y2/
如果ajax响应中有多个图像,并且您希望在加载所有图像时收到通知,请使用此稍微修改后的版本
$('#load').click(function(){
// inside the handler that calls the ajax
//you ajax call here
$.get('the_url_to_fetch',function(data){
// create an in-memory DOM element, and insert the ajax results
var $live = $('<div>').html(data);
// count the number of images
var imgCount = $live.find('img').length;
// apply a load method to the images in the ajax results
$('img',$live).load(function(){
// what to do for each image that is loaded
imgCount--;
if (imgCount==0)
{
// the code in here is called when all images have loaded.
}
});
// add the ajax results in the DOM
$('selector_where_to_put_the_response').html($live.children());
});
});
例如http://www.jsfiddle.net/gaby/Sj7y2/1/
如果你删除评论和空行,它不是很多代码:)所以不要被吓倒..
尝试使用实时功能从ajax触发HTML元素的事件
$('.banners_col img:last').live('change',function(){.....
链接地址: http://www.djcxy.com/p/49411.html
上一篇: jquery: event for when ajax loaded content is all loaded (including images)