textarea多行文本框自适应高度

Posted 黑暗之光

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了textarea多行文本框自适应高度相关的知识,希望对你有一定的参考价值。

<script src="https://cdn.bootcss.com/jquery/1.8.1/jquery.js"></script>
<script>
    $(function(){
        function autoHeight(ele){
            var $this = $(ele);
            $this.css({‘height‘:‘20px‘,‘overflow-y‘:‘hidden‘}).height(ele.scrollHeight);
            if(parseInt($this.height())>60){
                $this.height(60);
            }
        }
        $(‘.text‘).on(‘input propertychange‘,function(){
            autoHeight(this);
        })
    $(‘.text‘).trigger("input");
$(‘.text‘).trigger("propertychange");
})
 }) </script>
<textarea name="message"  class="text"></textarea>

 

以上是关于textarea多行文本框自适应高度的主要内容,如果未能解决你的问题,请参考以下文章

如何让textarea的高度自适应

layui弹框自适应高度

layui弹框自适应高度

textarea高度自适应问题

textarea 动态填充内容 文本框高度自适应

获取textarea文本框所选字符光标位置索引,以及选中的文本值;textarea高度自适应,随着内容增加高度增加;获取输入框中的光标位置