“HTML Textarea Высота” Ответ

HTML Textarea Высота

<!-- 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

Получить высоту текста в Textarea

ele.scrollHeight (Height of text inside scroll inlduing what u cant see)
ele.clientHeight (What u see)
MunchDuster

HTML Textarea Auto Height до количества текста

$('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

Ответы похожие на “HTML Textarea Высота”

Вопросы похожие на “HTML Textarea Высота”

Больше похожих ответов на “HTML Textarea Высота” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования