Był na ten temat kolejny wątek , który próbowałem. Ale jest jeden problem: textarea
nie zmniejsza się, jeśli usuniesz zawartość. Nie mogę znaleźć żadnego sposobu, aby zmniejszyć go do właściwego rozmiaru - clientHeight
wartość wraca jako pełny rozmiar textarea
, a nie jego zawartość.
Kod z tej strony znajduje się poniżej:
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 )
};
}