C'era un altro thread su questo , che ho provato. Ma c'è un problema: iltextarea
non si riduce se si elimina il contenuto. Non riesco a trovare alcun modo per ridurlo alla dimensione corretta - il clientHeight
valore ritorna come dimensione intera di textarea
, non il suo contenuto.
Il codice da quella pagina è sotto:
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 )
};
}