欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

文本域(textarea)的高度自适应实现两法

程序员文章站 2024-02-28 19:11:58
...

随着HTML5的即将退出,相信大家对页面更加人性化有了一定的期待,这里我介绍两种方法,让你的textarea能够实现根据内容自动调整高度,让你的页面也炫起来!

方法一,使用JS自动调整

<textarea name="mytextarea" cols="80" style="overflow-y:hidden;height:80px;" 
onpropertychange="this.style.height=this.scrollHeight+'px';" 
oninput="this.style.height=this.scrollHeight+'px';"></textarea>

方法二,使用css控制,只需给文本域设置overflow-y:visible样式,比较简单,推荐使用

<textarea style="width:300px;overflow-y:visible"></texarea>