JavaScript 동적 으로 TextArea 높이 를 조정 하 는 코드

762 단어 TextArea높이.
핵심 코드:
 
<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>
저자 하 조양

좋은 웹페이지 즐겨찾기