在javascript

时间:2018-05-03 07:03:56

标签: javascript

我需要在上传之前检查图片的尺寸。我在javascript中创建了一个函数进行验证,如下所示

$('#destSubmit').click(function() { 
    var img = document.getElementById('destImage'); 
    var width = img.naturalWidth ; 
    var height = img.naturalHeight ; 
    console.log('width : ' + width + '|| Height : ' + height);
    if(height != 100 || width != 100){
        alert(error);
    }
}

但它显示宽度和高度为undefined;

我知道这是一个重复的问题,但经过长时间的研究后我找不到解决方案。 尝试了此处列出的解决方案How to get image size (height & width) using JavaScript?,但没有用。

1 个答案:

答案 0 :(得分:5)

您可以使用jQuery,如下所示

$('#destSubmit').click(function() {        
    var width = $("#destImage").width(); 
    var height = $("#destImage").height(); 
    console.log('width : ' + width + '|| Height : ' + height);
    if(height != 100 || width != 100){
        alert(error);
    }
}