我有textarea,它将在页面加载时自动填充。我试图根据加载的内容增加其高度。
这就是我想要做的事情,
JS:
$('#xyz').text('dynamic content').attr('disabled',true);
textAreaModalAdjust(document.getElementById('xyz'));
function textAreaModalAdjust(o) {
o.style.height = "1px";
setTimeout(function() {
o.style.height = (25+o.scrollHeight)+"px";
}, 1);
}
甚至,我试过没有" setTimeout",没有运气。