文字區域自動高度:依照內容設定高度
問答:
問:問答>如何
問:如何
我可以使文字區域的高度適應其文字內容的高度,從而無需滾動條?function auto_grow(element) { element.style.height = "5px"; element.style.height = (element.scrollHeight) + "px"; }
textarea { resize: none; overflow: hidden; min-height: 50px; max-height: 100px; }
<textarea oninput="auto_grow(this)"></textarea>
以上是如何在 JavaScript 中建立自動調整文字區域高度?的詳細內容。更多資訊請關注PHP中文網其他相關文章!