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

2019-07-30  本文已影响0人  _owl

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();

})

上一篇 下一篇

猜你喜欢

热点阅读