if condition使用Javascript上传之前检查图像的宽度和高度

时间:2017-03-24 13:29:56

标签: jquery

如果在上传输入类型文件时有条件,我如何检查。

var img = new Image();
img.onload = function() {
  //alert(this.width + 'x' + this.height);
   if (this.width == 200 && this.width == 200) {
    form.submit();
   }
}

0 个答案:

没有答案