일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Spring
- linux
- javascript
- ReactJS
- elasticsearch
- 맛집
- Design Patterns
- 요리
- Oracle
- Gradle
- java
- JVM
- jsp
- ubuntu
- jenkins
- Git
- Spring Batch
- devops
- laravel
- Spring Boot
- AWS
- redis
- it
- MySQL
- php
- db
- tool
- Web Server
- springboot
- IntelliJ
Archives
- Today
- Total
아무거나
모바일 키패드에서 숫자만 입력 가능하며 type=password 와 같이 만드는법 본문
반응형
// html
<input
type={'numeric'}
inputMode={'decimal'}
maxLength={6}
pattern={'d*'}
placeholder={'번호를 입력해주세요'}
/>
// css ( 숫자입력시 type=password 처럼 변형 시키는 css )
input[type=numeric] {
-webkit-text-security:disc;
}
반응형
'Javascript & HTML & CSS > HTML' 카테고리의 다른 글
indexedDB (0) | 2024.11.11 |
---|---|
input file 찾아보기 버튼 image로 변경 (0) | 2019.12.24 |
[html5 / html4] 모바일웹 이미지/갤러리 제어 accept 속성 (0) | 2019.12.24 |
html에서 카메라 호출하는 태 (0) | 2019.12.24 |
파일 첨부 시 특정 확장자만 보이게 하기 (0) | 2019.12.24 |
Comments