textarea 高度自适应

来源:互联网 发布:太阳系disco动作数据 编辑:程序博客网 时间:2024/05/20 18:13
  $('textarea').each(function () {        this.setAttribute('style', 'height:' + (this.scrollHeight) + 'px;overflow-y:hidden;');    }).on('input', function () {        this.style.height = 'auto';        this.style.height = (this.scrollHeight) + 'px';    });