HTML
(HTML) input type text 키패드 .com으로 변경, 힌트 넣기
SAFE
2016. 5. 20. 10:39
1. 키패드 com으로 변경
<input type="text" /> 대신
<input type = "email" />
출처 : http://caliou.tistory.com/33
inputType | 설명 |
none | 편집할 수 없는 문자열 |
Text | 단순 문자열 |
textImeMultiLine | 여러줄 입력 가능한 문자열 |
textPostalAddress | 우편번호 |
textEmailAddress | 이메일 주소 |
textPassword | 비밀번호 |
textVisiblePassword | 비밀번호 이지만 숫자는 보임. |
number | 숫자 |
numberSigned | 숫자와 부호 |
numberDecimal | 숫자와 부호와 소수점 |
phone | 전화번호 |
datetime | 날짜와 시간 |
================
2. 힌트 넣기
<input type="text" placeholder="힌트 내용" />
placeholder 쓰면 된다.
Explorer 10.0부터 적용된다고 한다.
출처 : http://aroundck.tistory.com/1811