我将图像路径的值从文本框扔到 boxvalue 中,并想使用 javascript 验证图像是否存在。
var boxvalue = $('#UrlQueueBox').val();
我浏览了 stackoverflow 并找到了以下内容来获取图像宽度/高度,但不想使用它。
var img = document.getElementById('imageid');
我如何验证它是否真的是来自图像路径的图像?
我将图像路径的值从文本框扔到 boxvalue 中,并想使用 javascript 验证图像是否存在。
var boxvalue = $('#UrlQueueBox').val();
我浏览了 stackoverflow 并找到了以下内容来获取图像宽度/高度,但不想使用它。
var img = document.getElementById('imageid');
我如何验证它是否真的是来自图像路径的图像?
// 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);
});
您可以创建一个函数并检查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;
}