📌  相关文章
📜  隐藏损坏的图像 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:44.949000             🧑  作者: Mango

代码示例2
$('img').on('error', function(){
      $(this).hide();
  });

  /*// OR replace
  ---------------------------*/
  $('img').on('error', function (){
      $(this).attr('src', '/path/to/image/default.png');
  });