1

我用jquery设置了一个高度。设置此高度后,将执行另一个功能。重要的是,当设置第一个高度时,首先执行此函数。这是我的代码

$('.equal-height2').height(max_height2, function() {  
            alert('###');
            pc_img_height   = $('.podcasts-meta-img').height();
            $('.podcasts-meta-img').width(pc_img_height); 
        })

警报此刻被解雇了。

4

2 回答 2

2

height()没有回调函数,试试animate()

$('.equal-height2').animate({"height": max_height2}, function() {  
     alert('###');
     pc_img_height = $('.podcasts-meta-img').height();
     $('.podcasts-meta-img').width(pc_img_height); 
})
于 2012-06-30T20:33:40.787 回答
0

.height() 不会创建动画——你不需要在这里使用回调来做你想做的事。

于 2012-06-30T20:33:43.250 回答