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