使用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");
});
});
沒有留言:
張貼留言
留個話吧:)