23

可能重复:
使用jquery检查给定url的
图像是否存在 如果文件存在则更改图像源

我将图像路径的值从文本框扔到 boxvalue 中,并想使用 javascript 验证图像是否存在。

 var boxvalue = $('#UrlQueueBox').val();

我浏览了 stackoverflow 并找到了以下内容来获取图像宽度/高度,但不想使用它。

var img = document.getElementById('imageid'); 

我如何验证它是否真的是来自图像路径的图像?

4

2 回答 2

73
// The "callback" argument is called with either true or false
// depending on whether the image at "url" exists or not.
function imageExists(url, callback) {
  var img = new Image();
  img.onload = function() { callback(true); };
  img.onerror = function() { callback(false); };
  img.src = url;
}

// Sample usage
var imageUrl = 'http://www.google.com/images/srpr/nav_logo14.png';
imageExists(imageUrl, function(exists) {
  console.log('RESULT: url=' + imageUrl + ', exists=' + exists);
});
于 2013-02-01T17:40:13.870 回答
6

您可以创建一个函数并检查complete属性。

function ImageExists(selector) {
    var imageFound = $(selector); 

    if (!imageFound.get(0).complete) {
        return false;
    }
    else if (imageFound.height() === 0) {
        return false;
    }

    return true;
}

并调用这个函数

 var exists = ImageExists('#UrlQueueBox');

与 url 而不是选择器作为参数的相同功能(您的情况):

function imageExists(url){

    var image = new Image();

    image.src = url;

    if (!image.complete) {
        return false;
    }
    else if (image.height === 0) {
        return false;
    }

    return true;
}
于 2013-02-01T17:06:06.650 回答