【发布时间】:2012-07-26 21:38:22
【问题描述】:
为什么隐藏动画前后测试div的高度值是一样的?
$(document).ready(function() {
$("#test").hide("slow", function() {
alert($("#test").height());
});
});
<div id="test">
test
<br />
test
<br />
test
</div>
【问题讨论】: