개발자의 끄적끄적

[html/css] html ios input 숫자 키패드 띄우는 방법 본문

개발/html & css

[html/css] html ios input 숫자 키패드 띄우는 방법

효벨 2021. 10. 19. 02:00
728x90
반응형

[html/css] html ios input 숫자 키패드 띄우는 방법

 

 

ios 에서

 

특정 값을 입력받을때

 

숫자키패드를 띄워야 하는 경우가 있습니다.

 

그럴때는

 

아래 속성 2가지를 input 태그에 추가해주시면 됩니다.

 

inputmode="numeric" pattern="[0-9]*"

 

위 내용을 input 에 추가하면

 

아래와 같이 됩니다!

 

<input type="number" inputmode="numeric" pattern="[0-9]*"/>

 

참고들 하세요!

반응형
Comments