input type=nubmer maxlength 적용

  • input number 타입에는 maxlength가 먹지 않는다.

    그래서 스크립트로 적용



<input type="number" maxlength="6" oninput="numbermaxLength(this);">


function numbermaxLength(num) {
 if(num.value.length > num.maxLength) {
   num.value = num.value.slice(0, num.maxLength);
}
}

`

+ Recent posts