//从元素当前所在位置,往下消失$(document).ready(function(){ $("button").click(function(){ $("div").css('position','absolute'); $("div").css('top',$("div").position().top); $("div").animate({ top:'100%', opacity:'0.5', width:'150px', height:'0px', }); });});
//textarea选中时变高20px,离开时变回去