更改 Src 和使用 jquery 获取新高度
在以这种方式使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我是否需要将获取新高度绑定到某个东西以防止它过早地获取(以前的图像)高度?
有点。
load
事件应该可以工作。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.http://api.jquery.com/load-event/