我有一个JPS,其中用户可以在其中放置图像:
<div class="photo">
<div>Photo (max 240x240 and 100 kb):</div>
<input type="file" name="photo" id="photoInput" onchange="checkPhoto(this)"/>
</div>
我写了这个js:
function checkPhoto(target) {
if(target.files[0].type.indexOf("image") == -1) {
document.getElementById("photoLabel").innerHTML = "File not supported";
return false;
}
if(target.files[0].size > 102400) {
document.getElementById("photoLabel").innerHTML = "Image too big (max 100kb)";
return false;
}
document.getElementById("photoLabel").innerHTML = "";
return true;
}
可以很好地检查文件类型和大小。现在,我想检查图像的宽度和高度,但是我不能这样做。
我已经尝试过,target.files[0].width
但是我得到了undefined
。用其他方式我得到0
。
有什么建议?