<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);
});
我想提醒上传的图片宽度和高度。我怎样才能做到这一点 ?我使用了clientwidth
和naturalwidth
,但它没有显示正确的值。
答案 0 :(得分:2)
你可以做这样的事情
$('.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;
参考:Check image width and height before upload with Javascript