일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Design Patterns
- springboot
- tool
- jsp
- 요리
- Spring Batch
- Web Server
- 맛집
- devops
- javascript
- elasticsearch
- laravel
- Gradle
- db
- ReactJS
- Spring Boot
- MySQL
- AWS
- redis
- php
- Git
- JVM
- Spring
- it
- Oracle
- ubuntu
- IntelliJ
- java
- linux
- jenkins
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