美文网首页
textarea高度自适应(参考https://www.cnbl

textarea高度自适应(参考https://www.cnbl

作者: _owl | 来源:发表于2019-07-30 18:17 被阅读0次

html:

<textarea type="text" class="mui-input-clear bz_ipt" autoHeight="true"

          placeholder="请输入信息"></textarea>


js:

$(function () {

    $.fn.autoHeight =function () {

        function autoHeight(elem) {

            elem.style.height ='auto';

            elem.scrollTop =0; //防抖动

            elem.style.height = elem.scrollHeight +'px';

        }

        this.each(function () {

            autoHeight(this);

            $(this).on('keyup', function () {

                autoHeight(this);

            });

        });

    }

    $('textarea[autoHeight]').autoHeight();

})

相关文章

  • textarea高度自适应(参考https://www.cnbl

    html: