gpt4 book ai didi

jquery - 尝试使用 jquery 查找图像的真实宽度

转载 作者:行者123 更新时间:2023-12-01 07:17:46 25 4
gpt4 key购买 nike

我试图使用以下代码找到图像的“真实”宽度:

$(document).ready(function( ) {
$('.pageContent img').each(function(){
var theImage = new Image();
theImage.src = $(this).attr("src");
var imageWidth = theImage.width;
console.log(imageWidth);
}
}

我遇到的问题是每次重新加载页面时结果都会不同。有些 imageWidth 为 0。知道为什么会发生这种情况吗?

这是使用 Jquery 1.9.1 和 Chrome。

谢谢。

最佳答案

 Some imageWidth are 0. 

原因是您在渲染到 DOM 之前计算宽度。

使用 onLoad 方法代替。这样您将获得准确的图像,因为它已经添加到 DOM

$(window).load(function( ) {
----------calculations goes here
}

关于jquery - 尝试使用 jquery 查找图像的真实宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17295235/

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