$.ajax({
type: 'POST',
url: 'show-photo3.php',
data: 'type='+type+'&count='+count+'&aid='+aid,
dataType: 'html',
success: function(response) {
//alert(response);
$('#vph').html(response);
$('#vph').fadeIn("1000");
newhight=$("#vph").height();
$("#vph_outer").css('height',newhight);
}
});
它用于基于 ajax 的图片库。当我尝试根据新内容的高度调整外部 div 的大小时。它不能正常工作意味着取错高度。我认为取高度时没有完全加载 ajax 内容。