0

如何在选择文件上选择所选图像的宽度?

if(new Image().attr('src').width() < 200){
alert('Expected');

}else{

alert('Woah?');

}
4

1 回答 1

0

要使用 Javascript(不是 jQuery 特定)选择图像的来源和宽度:

这是一个 jsFiddle,这是 js 代码:

var test_image = document.getElementById("TestImage");
var test_image_src = test_image.getAttribute("src"); // get the source
var test_image_width = test_image.getAttribute("width"); // get the width

if(test_image_width < 200){
    alert('Expected');
}else{
    alert('[Woah]?');
}

您可以使用此方法检索任何属性。

var 属性 = element.getAttribute(attributeName);
https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute

于 2013-09-09T22:52:52.877 回答