[jQuery] textarea高さ自動調節 2022年6月3日2022年6月12日 jQuery <textarea>の高さを入力に応じて自動的に伸縮するには、jQueryのこれがいちばんお手軽。 $('textarea').attr('rows', 1).on('input', function() { $(this).height(0).innerHeight(this.scrollHeight); });