관리 메뉴

제뉴어리의 모든것

내용에 따라 높이가 조절되는 textarea 본문

javascript

내용에 따라 높이가 조절되는 textarea

제뉴어리맨 2023. 4. 18. 01:54

 

참고 내용

const targetTextarea = document.querySelector(`#target`);

 if(targetTextarea.scrollHeight > targetTextarea.clientHeight) //textarea height 확장
    targetTextarea.style.height= targetTextarea.scrollHeight + "px";
 else //textarea height 축소
    targetTextarea.style.height= (targetTextarea.scrollHeight-18) + "px";

 

실제 적용 내용

  addEventListenerTxtArea: function () {
        var textarea = document.getElementById("content");

        if(textarea.scrollHeight > textarea.clientHeight) //textarea height 확장
            textarea.style.height= textarea.scrollHeight + "px";
        else
            textarea.style.height= (textarea.scrollHeight-18) + "px";
    }

 

 

참고

https://bydawn25.tistory.com/44