<textarea type="text" placeholder="直接填写联系地址" rows="1" id="address-write" maxlength="100"></textarea>
//填写地址文本域,默认一行显示。输入时,高度随内容变化。 $(‘#address-write‘).on(‘input‘,function() { $(this).css({ ‘height‘: ‘auto‘ }).height( this.scrollHeight ); });
Posted 幸福n-1次方
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现输入框高度随内容变化相关的知识,希望对你有一定的参考价值。
<textarea type="text" placeholder="直接填写联系地址" rows="1" id="address-write" maxlength="100"></textarea>
//填写地址文本域,默认一行显示。输入时,高度随内容变化。 $(‘#address-write‘).on(‘input‘,function() { $(this).css({ ‘height‘: ‘auto‘ }).height( this.scrollHeight ); });
以上是关于实现输入框高度随内容变化的主要内容,如果未能解决你的问题,请参考以下文章
Android EditText控件即设置最小高度又运行高度随内容增加而变化
android布局如何实现显示填满整个手机屏幕,EditText如何设置能使其样式不随输入内容太多而发生变化。