개발 이야기/프론트엔드 개발자

숫자 키패드만 올리기

석구석구 2022. 7. 18. 11:45

가끔 숫자만 입력하는 기능을 구현하면서 input 타입을 type=number 로 처리하는 개발자들이 있는데, 이건 좋지 못하다.

 

<input pattern="[0-9]*" inputMode={isIOS ? undefined : 'numeric'} />

 

이렇게 넣어주자.

 

직접 확인하고, 실무에도 적용한 사례니 마음 놓고 사용하면 된다.

 

https://inputtypes.com/

 

Input Type Sandbox

Input Type Sandbox is a front-end testing tool for form input types, validation patterns, onscreen keyboards and more!

inputtypes.com