嘗試對
var curHeight = $('#first').height();
$('#first').css('height', 'auto');
var autoHeight = $('#first').height();
$('#first').height(curHeight).animate({height: autoHeight}, 1000);
var el = $('#first'), curHeight = el.height(), autoHeight = el.css('height', 'auto').height(); el.height(curHeight).animate({height: autoHeight}, 1000);
以上是如何使用 jQuery 將 Div 元素設定為自動高度動畫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!