var contentparanum = 1;
while($(".container").height() < 200){
paranum++;
$(".content").append("<p></p>");
$(".content p:nth-child("+contentparanum+")").load("getcontent.php?paranum="+paranum);
contentparanum++;
//use load() to add content into container, when the height of container is over 200px the loop stops
}
问题是循环永远不会停止。我添加了 alert(".container"); 进入循环,我只得到0。似乎只有在while循环完成后才能获得容器的高度。我该如何解决这个问题?
我添加了具体代码
和这里的html代码
<div class="container">
<div class="content"></div>
</div>