在 JQuery 中,以前可以使用 fn.error() 处理丢失的图像
var photo = $('#photo');
photo.find('.photo-wrapper')
.error(function() { $(this).attr('src' , '/images/nosuchphoto.png'); })
.attr( 'src', '/images/photoserver/photo.png' );
但这在 JQuery 1.8 中已被弃用。
现在 1.9 已经发布,处理丢失图像的最佳方法是什么?