Jquery-负载内容div的高度

时间:2014-04-10 00:29:41

标签: jquery css

当我离开2个div与4个结果相同的高度时,我接受了一次加载?

<script>
$(document).ready(function() {

$( ".buscascript<?php echo "$row[id]"; ?>" ).click(function() {
$( "#fechargame" ).show();
$( "#result4" ).show();
$( "#result5" ).show();
$( "#result4" ).load( "busca.php?game=<?php echo "$row[id]"; ?>" );
var altura = $("#result4").height();
$( "#publicidade1a" ).height(altura);
$( "#publicidade" ).height(altura);
});

});
</script>

1 个答案:

答案 0 :(得分:0)

问题可能是,load方法是异步的,所以你需要在加载回调中找到高度

    $("#result4").load("busca.php?game=<?php echo "$row[id]"; ?>", function () {
        var altura = $("#result4").height();
        $("#publicidade1a").height(altura);
        $("#publicidade").height(altura);

    });