gpt4 book ai didi

php - jQuery 中没有图像宽度和高度

转载 作者:行者123 更新时间:2023-12-01 03:35:11 26 4
gpt4 key购买 nike

我必须使用 jQuery 获取图像宽度和高度,但我卡在这里。这里图像的宽度和高度显示未定义,请建议我。感谢您的任何建议。

下面是代码

$(document).ready(function () {
$("#file").change(function () {
var files = this.files[0];
var reader = new FileReader();
var img = new Image();
reader.onload = function (e) {
img.src = e.target.result;
var fileSize = Math.round(files.size / 1024);///output is coming.
alert("File size is " + fileSize + " kb");
alert("width=" + this.width + " height=" + this.height);//showing undefined
};
reader.readAsDataURL(files);
});
});
<input type="file" class="cropit-image-input hii" id="file" style="display: none;" >

最佳答案

您可以使用img代替this

 alert("width=" + img.width + " height=" + img.height); 

$(document).ready(function() {
$("#file").change(function() {
var files = this.files[0];
var reader = new FileReader();
var img = new Image();
reader.onload = function(e) {
img.src = e.target.result;
var fileSize = Math.round(files.size / 1024); ///output is coming.
alert("File size is " + fileSize + " kb");

alert("width=" + img.width + " height=" + img.height); //showing undefined

};
reader.readAsDataURL(files);

});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="file" class="cropit-image-input hii" id="file">

关于php - jQuery 中没有图像宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36624446/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com