根据文字多少大小进行变化的文本框

直接上代码
<textarea rows="1" style="overflow-y:hidden;" onscroll="this.rows++;" onpropertychange="this.style.posHeight=this.scrollHeight"></textarea>

cols和rows进行大小控制。
或者直接
<textarea rows="1" style="overflow-y:visible;border:0;">
</textarea>

注意这里连续输入相同字符时会被默认不换行的,导致textarea变大,输入不同的汉字就不会出现这种情况。

你可能感兴趣的:(html)