Textarea高度自适应

通过两次调整 textarea.style.height让textarea元素的高度自适应。

textarea 的 onchange 触发 resize 方法 下面是 resize 方法的逻辑 ① textarea.style.height = 'auto';// 让 textarea 的高度恢复默认 ② textarea.style.height = textarea.scrollHeight + 'px';// textarea.scrollHeight 表示 textarea 内容的实际高度

点此发表评论
暂无评论