gpt4 book ai didi

javascript - Jquery 使图像宽度为零

转载 作者:行者123 更新时间:2023-11-28 20:32:03 24 4
gpt4 key购买 nike

我遇到了 jquery width() 的问题;

HTML 标记:

<img height="300px" src="http://localhost/portfolio/wp-content/uploads/Alone.jpg" alt="Alone" title="Alone" />

Jquery:

var slide_width = 0;
$("#barely_slide article img").each(function(){
console.dir($(this).width());
});
console.dir(slide_width);

查看 $(this) 我看到 clientWidth 返回正确的值,也是 offsetWidth,但这些没有等效的 jquery 函数。

最佳答案

用这个包装你的函数调用:

(function($) {

$(document).ready(function() {
//Here you can manupilate the dom. Images are not loaded yet.
});

$(window).load(function() {
//Here you can check for image widths.
});

})(jQuery);

您可以通过以下方式检查客户端宽度:

$(window).width();

您的文档宽度为:

$(document).width();

关于javascript - Jquery 使图像宽度为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16162980/

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