当我的网站在阻止某些域的组织内使用时会引发此错误 – 即社交网站等.它们只是使用< img src =“”>链接到这些域上的图像.
来自Chrome控制台
Failed to load resource: the server responded with a status of 403
(Forbidden: category denied)
“Followed by URL”
最佳答案
我找到了这个:
function imgError(image){
image.onerror = "";
image.src = "/images/noimage.gif";
return true;
}