将页面上所有已经失效的图片链接用默认图片代替的jQuery代码:
$('img').error(function(){ $(this).attr('src', ‘img/default.jpg’); });