更改 Src 和使用 jquery 获取新高度

发布于 2024-09-12 14:36:20 字数 316 浏览 7 评论 0原文

在以这种方式使用 attr 更改 src 后,我尝试将新图像垂直居中在 div 中:

$("#image").attr("src",newsrc);
var height = $("#image").height();
var newmargin = (divsize - height)/2;
$("#image").css=("margin-top",newmargin);

它始终使用前一个图像的高度。这是一个时间问题吗?我是否需要将新高度绑定到某些东西以防止它过早地获取(以前的图像)高度?

所有图像均在页面加载时预加载...

I'm trying to center a new image vertically in a div after changing the src using attr in this way:

$("#image").attr("src",newsrc);
var height = $("#image").height();
var newmargin = (divsize - height)/2;
$("#image").css=("margin-top",newmargin);

it always uses the height of the previous image. is it a timing thing? do i need to bind getting the new height to something to prevent it prematurely grabbing the (previous images) height?

all images are preloaded on the loading of the page...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌伤ぢ 2024-09-19 14:36:20

我是否需要将获取新高度绑定到某个东西以防止它过早地获取(以前的图像)高度?

有点。 load 事件应该可以工作。

$("#image").attr("src",newsrc);
$('#image').load(
    function() {
        var height = $("#image").height();
        // ...
    }
);

http://api.jquery.com/load-event/

do i need to bind getting the new height to something to prevent it prematurely grabbing the (previous images) height?

Kinda. load event should work.

$("#image").attr("src",newsrc);
$('#image').load(
    function() {
        var height = $("#image").height();
        // ...
    }
);

http://api.jquery.com/load-event/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文