等高柱

时间:2012-03-23 10:18:12

标签: javascript jquery

我使用以下JS代码创建相等的高度列:

var colHeight = Math.max($('.3columngallery .col1').height(), $('.3columngallery .col2').height(), $('.3columngallery .col3').height());
$('.3columngallery .gallery').height(colHeight);

它在firefox和safari中运行良好,但在chrome和opera中没有。

以下是该页面的链接,我使用此脚本:http://www.jaspreetkaur.com/gwstudio/product-gallery

1 个答案:

答案 0 :(得分:2)

如果您在此容器内使用图像,则应使用

$(window).load(function ()

而不是

$(function() { 

因为图像未加载到dom中。