在jquery中设置高度后回调

时间:2012-06-30 20:25:29

标签: jquery callback

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

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

警报此刻被解雇了。

2 个答案:

答案 0 :(得分: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); 
})

答案 1 :(得分:0)

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