星期五, 6月 18, 2010

[Javascript] Image onerror event

使用onerror處理圖片不存在的小方法
<img src="bigdstut.gif" onerror="javascript:this.src='temp.gif'" />

使用Jquery來綁定onerror事件
$(document).ready(function(){
    $("img").bind("error",function(){
        $(this).attr("src","images/icon/noImg.jpg");
    });
});

沒有留言:

張貼留言

留個話吧:)

其他你感興趣的文章

Related Posts with Thumbnails