网页图片加载失败,用默认图片替换
$(function () { $('img').each(function () { $(this).bind('load', function () { $.Deferred().resolve(); }).bind('error', function () { //图片加载错误,加入错误处理 // dfd.resolve(); alert('error'); }) }) })
HTML代码
<body> <img src="/images/01.png" /> </body>
"唯有高屋建瓴,方可水到渠成"