これについては、私が試した別のスレッドがありました。ただし、問題が1つあり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 )
};
}