“html textarea tinggi otomatis ke jumlah teks” Kode Jawaban

HTML TextArea Tinggi

<!-- textarea rows attribute -->
<textarea id="txtid" name="txtname" rows="4" cols="50" maxlength="200">
A nice day is a nice day.
Lao Tseu
</textarea>
VasteMonde

html textarea tinggi otomatis ke jumlah teks

$('textarea').each(function () {
  this.setAttribute('style', 'height:' + (this.scrollHeight) + 'px;overflow-y:hidden;');
}).on('input', function () {
  this.style.height = 'auto';
  this.style.height = (this.scrollHeight) + 'px';
});
Dangerous Dove

Jawaban yang mirip dengan “html textarea tinggi otomatis ke jumlah teks”

Pertanyaan yang mirip dengan “html textarea tinggi otomatis ke jumlah teks”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya