Jquery图像和高度显示

时间:2015-11-07 06:35:39

标签: jquery image height width

<input type="file" class="test" name="vend_logo" id="vend_logo">

$('.test').bind('change', function() {
var file = files[0]
var img = new Image();
var width = img.width;alert(width);
});

我想提醒上传的图片宽度和高度。我怎样才能做到这一点 ?我使用了clientwidthnaturalwidth,但它没有显示正确的值。

1 个答案:

答案 0 :(得分:2)

你可以做这样的事情

&#13;
&#13;
$('.test').bind('change', function() {
  if (file = this.files[0]) {
    img = new Image();
    img.onload = function() {
      var width = this.width;
      alert(width);
    };
    img.src = window.URL.createObjectURL(file);
  }
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<input type="file" class="test" name="vend_logo" id="vend_logo">
&#13;
&#13;
&#13;

参考:Check image width and height before upload with Javascript