2 lines
193 B
JavaScript
2 lines
193 B
JavaScript
//textarea根据内容文字自动调整高度。注册textarea.oninput事件执行以下函数。
|
|
function textareaAutoHeight(){this.style.height='auto'; this.style.height= this.scrollHeight;} |