当我离开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>
答案 0 :(得分:0)
问题可能是,load
方法是异步的,所以你需要在加载回调中找到高度
$("#result4").load("busca.php?game=<?php echo "$row[id]"; ?>", function () {
var altura = $("#result4").height();
$("#publicidade1a").height(altura);
$("#publicidade").height(altura);
});