Front-End/JavaScript
JavaScript - Textarea 자동 길이 늘리기.
Whatever App's
2018. 8. 16. 16:18
IE8 이후 버전의 Textarea는 자동으로 늘어나지 않는다.
ex) <textarea onkeyup = "keyup(this)"></textarea>
function keyup(obj) {
obj.style.height = '1px';
obj.style.height = (obj.scrollHeight) + 'px';
obj.style.height = (obj.scrollHeight) + 'px';
}
이런식으로 스크립트 처리를 해서 자동으로 줄바꿈이 될 수 있도록 처리를 하였다.
반응형