📅  最后修改于: 2022-03-11 15:02:44.949000             🧑  作者: Mango
$('img').on('error', function(){
$(this).hide();
});
/*// OR replace
---------------------------*/
$('img').on('error', function (){
$(this).attr('src', '/path/to/image/default.png');
});