textareaの高さをoninput属性で自動調整する方法【JavaScript HTML】

以下のコードを

<textarea id="old-textarea">
ここにテキストを入力
</textarea>

こうする

<textarea id="new-textarea" oninput="this.style.height = '';this.style.height = this.scrollHeight + 'px'" style="overflow:hidden;">
ここにテキストを入力
</textarea>

Comments

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です