gpt4 book ai didi

jquery - 页面加载 jQuery 后匹配 div 高度

转载 作者:行者123 更新时间:2023-12-01 06:38:39 26 4
gpt4 key购买 nike

加载图像后,我无法匹配 div 的高度。它获取最高 div 的高度,但似乎在加载图像之前就获取了它。有没有办法解决?这是我到目前为止所拥有的:

function matchColHeights(col1, col2) {
var col1Height = $(col1).height();
alert('col1 '+col1Height);
var col2Height = $(col2).height();
alert('col2 '+col2Height);

if (col1Height < col2Height) {
$(col1).height(col2Height);

} else {
$(col2).height(col1Height);
}
}

$(document).ready(function() {
matchColHeights('#leftPanel', '#rightPanel');
});

这里是运行位置的链接:http://www.tigerstudiodesign.com/blog/

最佳答案

图像加载后是否调整列高。像这样的东西:

$('img').load(function() {
$(col1).height(col2Height);
});

关于jquery - 页面加载 jQuery 后匹配 div 高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8605462/

26 4 0
文章推荐: teamcity - Maven 站点,将 TeamCity 设置为 ciManagement 系统?
文章推荐: java - Java中的简单动画
文章推荐: coldfusion - 使用 MXUnit 模拟/ stub 组件
文章推荐: jquery - 隐藏设置为显示 :block with jQuery 的
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com