jQuery回调图像加载(即使图像被缓存)

时间:2010-10-06 21:26:26

标签: jquery image javascript-events jquery-load

我想这样做:

$("img").bind('load', function() {
  // do stuff
});

但是从缓存加载图像时不会触发加载事件。 The jQuery docs建议a plugin解决此问题,但it doesn't work

14 个答案:

答案 0 :(得分:549)

如果已经设置了src,那么在您获得绑定事件处理程序之前,事件将在缓存的情况下触发。要解决此问题,您可以循环检查并根据.complete触发事件,如下所示:

$("img").one("load", function() {
  // do stuff
}).each(function() {
  if(this.complete) {
      $(this).load(); // For jQuery < 3.0 
      // $(this).trigger('load'); // For jQuery >= 3.0 
  }
});

请注意从.bind().one()的更改,以便事件处理程序不会运行两次。

答案 1 :(得分:42)

我可以建议您将其重新加载到非DOM图像对象中吗?如果它被缓存,这将花费任何时间,并且onload仍将触发。如果它没有被缓存,它将在加载图像时触发onload,这应该与图像的DOM版本完成加载的时间相同。

使用Javascript:

$(document).ready(function() {
    var tmpImg = new Image() ;
    tmpImg.src = $('#img').attr('src') ;
    tmpImg.onload = function() {
        // Run onload code.
    } ;
}) ;

更新(处理多个图像并使用正确排序的onload附件):

$(document).ready(function() {
    var imageLoaded = function() {
        // Run onload code.
    }
    $('#img').each(function() {
        var tmpImg = new Image() ;
        tmpImg.onload = imageLoaded ;
        tmpImg.src = $(this).attr('src') ;
    }) ;
}) ;

答案 2 :(得分:35)

我的简单解决方案,它不需要任何外部插件,对于常见情况应该足够了:

/**
 * Trigger a callback when the selected images are loaded:
 * @param {String} selector
 * @param {Function} callback
  */
var onImgLoad = function(selector, callback){
    $(selector).each(function(){
        if (this.complete || /*for IE 10-*/ $(this).height() > 0) {
            callback.apply(this);
        }
        else {
            $(this).on('load', function(){
                callback.apply(this);
            });
        }
    });
};

像这样使用它:

onImgLoad('img', function(){
    // do stuff
});
例如,要在加载时淡入图像,您可以这样做:

$('img').hide();
onImgLoad('img', function(){
    $(this).fadeIn(700);
});

或者,如果您更喜欢类似jquery插件的方法:

/**
 * Trigger a callback when 'this' image is loaded:
 * @param {Function} callback
 */
(function($){
    $.fn.imgLoad = function(callback) {
        return this.each(function() {
            if (callback) {
                if (this.complete || /*for IE 10-*/ $(this).height() > 0) {
                    callback.apply(this);
                }
                else {
                    $(this).on('load', function(){
                        callback.apply(this);
                    });
                }
            }
        });
    };
})(jQuery);

并以这种方式使用它:

$('img').imgLoad(function(){
    // do stuff
});

例如:

$('img').hide().imgLoad(function(){
    $(this).fadeIn(700);
});

答案 3 :(得分:22)

你真的必须用jQuery做吗?您也可以将onload事件直接附加到您的图片上;

<img src="/path/to/image.jpg" onload="doStuff(this);" />

每次从高速缓存加载图像时都会触发。

答案 4 :(得分:15)

您也可以使用此代码并支持加载错误:

$("img").on('load', function() {
  // do stuff on success
})
.on('error', function() {
  // do stuff on smth wrong (error 404, etc.)
})
.each(function() {
    if(this.complete) {
      $(this).load();
    } else if(this.error) {
      $(this).error();
    }
});

答案 5 :(得分:13)

我自己就遇到过这个问题,到处寻找一个不涉及杀死我的缓存或下载插件的解决方案。

我没有立即看到这个帖子所以我找到了别的东西,而这是一个有趣的解决方案,而且(我认为)值得在这里发帖:

$('.image').load(function(){
    // stuff
}).attr('src', 'new_src');

我实际上从这里的评论中得到了这个想法:http://www.witheringtree.com/2009/05/image-load-event-binding-with-ie-using-jquery/

我不知道它为什么会起作用,但我已经在IE7上对它进行了测试,并且在它现在运行之前就已经破了。

希望它有所帮助,

修改

接受的答案实际上解释了原因:

  

如果已经设置了src,则在绑定事件处理程序之前,事件将在缓存中触发。

答案 6 :(得分:4)

对GUS示例的修改:

$(document).ready(function() {
    var tmpImg = new Image() ;
    tmpImg.onload = function() {
        // Run onload code.
    } ;

tmpImg.src = $('#img').attr('src');
})

在onload之前和之后设置源。

答案 7 :(得分:4)

通过使用jQuery使用图像的src生成新图像,并将load方法直接赋值给它,当jQuery完成生成新图像时,成功调用load方法。这在IE 8,9和10中适用于我

$('<img />', {
    "src": $("#img").attr("src")
}).load(function(){
    // Do something
});

答案 8 :(得分:4)

我找到的解决方案https://bugs.chromium.org/p/chromium/issues/detail?id=7731#c12 (此代码直接取自评论)

var photo = document.getElementById('image_id');
var img = new Image();
img.addEventListener('load', myFunction, false);
img.src = 'http://newimgsource.jpg';
photo.src = img.src;

答案 9 :(得分:3)

在定义img oject之后,只需在单独的行上重新添加src参数。这将欺骗IE触发lad事件。它很难看,但它是迄今为止我发现的最简单的解决方法。

jQuery('<img/>', {
    src: url,
    id: 'whatever'
})
.load(function() {
})
.appendTo('#someelement');
$('#whatever').attr('src', url); // trigger .load on IE

答案 10 :(得分:1)

如果您想要这样做,我可以给您一点建议:

<div style="position:relative;width:100px;height:100px">
     <img src="loading.jpg" style='position:absolute;width:100px;height:100px;z-index:0'/>
     <img onLoad="$(this).fadeIn('normal').siblings('img').fadeOut('normal')" src="picture.jpg" style="display:none;position:absolute;width:100px;height:100px;z-index:1"/>
</div>

如果你在浏览器缓存图片时这样做,那么总是img显示没问题,但是在真实图片下加载img。

答案 11 :(得分:1)

我在IE中遇到此问题,其中e.target.width未定义。加载事件会触发,但我无法在IE中获得图像的尺寸(chrome + FF工作)。

原来你需要寻找 e.currentTarget.naturalWidth &amp;的 e.currentTarget.naturalHeight

IE再一次做了自己的事情(更复杂)。

答案 12 :(得分:0)

您可以使用JAIL插件解决您的问题,该插件还允许您延迟加载图片(提高网页性能)并将回调作为参数传递

$('img').asynchImageLoader({callback : function(){...}});

HTML应该看起来像

<img name="/global/images/sample1.jpg" src="/global/images/blank.gif" width="width" height="height" />

答案 13 :(得分:0)

如果你想要一个纯CSS解决方案,这个技巧非常有效 - 使用转换对象。这也适用于缓存或未缓存的图像:

CSS:

.main_container{
    position: relative;
    width: 500px;
    height: 300px;
    background-color: #cccccc;
}

.center_horizontally{
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: green;
  left: 50%;
  top: 0;
  transform: translate(-50%,0);
}

.center_vertically{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: blue;
  transform: translate(0,-50%);
}

.center{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background-color: red;
  transform: translate(-50%,-50%);
}

HTML:

<div class="main_container">
  <div class="center_horizontally"></div>
  <div class="center_vertically"></div>
  <div class="center"></div>
  </div>
</div

Codepen example

Codepen LESS example