問題:
實現文字區域的高度動態調整以適應其內容,消除了對
使用JavaScript的解:
function auto_grow(element) { element.style.height = "5px"; element.style.height = (element.scrollHeight) + "px"; }
CSS樣式:
textarea { resize: none; overflow: hidden; min-height: 50px; max-height: 100px; }
實作:
<textarea oninput="auto_grow(this)"></textarea>
實作:
使用此程式碼,文字區域的高度將擴展或收縮以適應內容,從而消除了需要用於滾動條。以上是如何使文字區域自動調整其內容大小並隱藏捲軸?的詳細內容。更多資訊請關注PHP中文網其他相關文章!