Textarea高度自适应
2023-02-13 21:21:08
33
通过两次调整 textarea.style.height让textarea元素的高度自适应。
textarea 的 onchange 触发 resize 方法 下面是 resize 方法的逻辑 ① textarea.style.height = 'auto';// 让 textarea 的高度恢复默认 ② textarea.style.height = textarea.scrollHeight + 'px';// textarea.scrollHeight 表示 textarea 内容的实际高度