textarea高度自适应(参考https://www.cnblogs.com/purple04551/p/8075366.html)
html:js:$(function(){$.fn.autoHeight=function(){functionautoHeight(elem){elem.style.height='auto';elem.scrollTop=0;//防抖动elem.style.height=elem.scrollHeight+'px';}this.each(function(){autoHeight(this);