使用动画方法同时切换高度和不透明度:
$(document).ready(function () { $('#animate').click(function () { $('.box').animate({ opacity: 'toggle', height: 'toggle' }); return false; }); });