实现输入框高度随内容变化

<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 @ 2017-12-27 15:11  幸福n-1次方  阅读(815)  评论(0编辑  收藏  举报