<img src="없는 이미지" alt="No image!" />

 

 

 

 

// 이미지 오류가 발생할 때 replaceWith를 이용해서 바꿔 출력하기

$(document).ready(function() {
    $("img").error(function() {
        $("img").replaceWith("<p>No image!</p>");
    });

});

 

 

 

 

 

 

// 이미지 태그 엑박이 발생할 때 다른 이미지로 교체하기

$(document).ready(function() {
    $("img").error(function() {
        $("img").attr("src", "noimage.gif");
    });

});

Posted by 은둔고수