0

无论如何,javascript中是否有测试图像的src是否真的击中了真实文件?

我的想法是,在 DOM 构造的某个时刻,浏览器必须意识到文件位置没有返回真实文件,因为它默认为损坏的文件。

4

2 回答 2

2

是的,您可以将onerror事件用于图像元素。

于 2012-08-02T19:46:28.200 回答
1

我在我的库中为此事件使用的函数:

function onImageError (source) {
    //NOTE: Image Error function 
    //Useage: <img src="" onerror="onImgError(this)" />

    source.src = "/public/images/global/backup_product.jpg"; // location of sample/error image
    source.onerror = ""; // disable onerror to prevent endless loop
    return true;
}
于 2012-08-02T19:48:25.097 回答