STUDY/javascript

textarea 높이 측정

수밤바 2019. 7. 5. 12:06
728x90

// textarea 높이 측정

prop('scrollHeight');

textarea 최소크기에서 타이핑 줄바꿈을 최소크기 이상 할경우 줄 수에따라 textarea height 늘어나게 할때.

function textareaSize(obj){

  if (obj) {

    obj.style.height = "0px";

    obj.style.height = (0 + obj.scrollHeight) + "px";

  }

}