1.直接在页面添加以下代码
<script> window.onload = function () { $.each($("textarea"), function(i, n){ $(n).css("height", n.scrollHeight + "px"); }) } </script>