美文网首页
图片加载失败时,加载默认图片

图片加载失败时,加载默认图片

作者: ForUs | 来源:发表于2015-03-27 02:55 被阅读520次

    方法一:

    <pre>
    //图片加载失败时,加载默认图片
    $(document).ready(function(){
    $("img").one("error",function(e){
    $(this).attr("src","<%= image_path('default-avatar.png')%>");
    });
    })
    </pre>

    方法二:

    <pre>
    <img src="/images/user.png" onerror="this.onerror=null;this.src=/images/default-avatar.png">

    相关文章

      网友评论

          本文标题:图片加载失败时,加载默认图片

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