Про це була ще одна нитка , яку я спробував. Але є одна проблема: textarea
вона не зменшується, якщо видалити вміст. Я не можу знайти спосіб зменшити його до потрібного розміру - clientHeight
значення повертається як повний розмір textarea
, а не його вміст.
Код із цієї сторінки знаходиться нижче:
function FitToContent(id, maxHeight)
{
var text = id && id.style ? id : document.getElementById(id);
if ( !text )
return;
var adjustedHeight = text.clientHeight;
if ( !maxHeight || maxHeight > adjustedHeight )
{
adjustedHeight = Math.max(text.scrollHeight, adjustedHeight);
if ( maxHeight )
adjustedHeight = Math.min(maxHeight, adjustedHeight);
if ( adjustedHeight > text.clientHeight )
text.style.height = adjustedHeight + "px";
}
}
window.onload = function() {
document.getElementById("ta").onkeyup = function() {
FitToContent( this, 500 )
};
}