textarea的高度自适应

Posted zsj-02-14

tags:

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

1.只读状态下的高度自适应

//maxHeight为最大高度
function autoTextarea(maxHeight){
        $.each($("textarea"), function(i, n){
            $("#textarea").css("overflow", "hidden");
            var _height = n.scrollHeight;
            $(n).height(_height);
            if( $(n).height() > maxHeight ){
                $(n).height(maxHeight);
                $("#textarea").css("overflow", "auto");
            }
        })
    }

效果图:

技术分享图片

 2.编辑状态下的高度自适应

$.each($("textarea"), function(i, n){
 $(n).height(n.scrollHeight);  $(n).on(
‘input‘,function(){ if(n.scrollHeight>n.offsetHeight){  $(n).height(n.scrollHeight)   } })
})

删除时,高度自适应还没有找到合适的方法(待续,如果你们有的话,可以给我留言)

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

textarea高度自适应

textarea高度自适应问题

如何让textarea的高度自适应

textarea的高度自适应

小程序 textarea高度自适应?

vue项目中textarea无法根据输入的内容自适应高度 爬坑