美文网首页
img onload 不触发,img onload 不执行

img onload 不触发,img onload 不执行

作者: fish_yijinc | 来源:发表于2021-12-24 09:46 被阅读0次

    在做多图大图页面的时候,经常需要先loading,等待image.onload 才放开loading,但是img.onload在图片从缓存/内存直接读取的时候,部分浏览器如safari/微信 不触发img.onload 事件,

    这时可以直接用img的conplete 属性先行判断

    var img = document.querySelector('img');
    var isLoaded = image.complete && image.naturalHeight !== 0;
    
    if (isLoaded) {
      // from cache or memory
      // do somthing...
    } else {
      img.onload = (e) => {
        // do somthing...
      }
    }
    

    相关文章

      网友评论

          本文标题:img onload 不触发,img onload 不执行

          本文链接:https://www.haomeiwen.com/subject/mvllqrtx.html