📌  相关文章
📜  textarea 高度适合内容 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:59.633000             🧑  作者: Mango

代码示例5
$('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';
});