Posted in Javascript onDecember 28, 2010
核心代码:
<script language="javascript" type="text/javascript"> function adjustObjHeight(obj, defaultHeight) { if(obj.scrollHeight > defaultHeight) { obj.style.height = obj.scrollHeight + 'px'; } else { obj.style.height = defaultHeight + 'px'; } } window.onload = function() { var obj = document.getElementsByTagName('textarea'); var len = obj.length; for(var i = 0; i<len; i++) adjustObjHeight(obj[i], 50); } </script>
TextAreaHTML代码:
<textarea id="content" onkeyup="adjustObjHeight(this, 50);"></textarea>
作者 何朝阳
JavaScript动态调整TextArea高度的代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@