0

.slideUp 功能完成后,有没有办法阻止元素更改为 display:none?

如果可能,我希望该功能在达到 div 的最低高度后停止。

4

1 回答 1

2

只需在 height 属性上使用 $.animate 即可。

$('#myelement').animate({ height: 0 }, { duration: 'slow' });

http://jsfiddle.net/sZX2s/

于 2013-04-19T01:58:16.023 回答