코드
<textarea oninput="rowsCount(this)"></textarea>
const rowsCount = (target) => {
// 개수
console.log( target.value.split("\n").length - 1 );
}
Enter를 입력 시 줄바꿈 되는 개행(\n)을 기준으로 잘라 개수를 셀 수 있습니다.
나를 제외한 천재들 블로그
- [JS] textarea 줄바꿈 갯수 -
코드
<textarea oninput="rowsCount(this)"></textarea>
const rowsCount = (target) => {
// 개수
console.log( target.value.split("\n").length - 1 );
}
Enter를 입력 시 줄바꿈 되는 개행(\n)을 기준으로 잘라 개수를 셀 수 있습니다.