input type

모바일 키보드 키패드 input type 및 앵커

기본 키보드 <input type=”text”/>

URL 키보드 <input type=”url”/>
이메일 키보드 <input type=”email”/>
숫자 키보드 <input type=”text” pattern=”[09]*”/> * 안먹힘

 

<input type=’number’ /> 확인요망

 

 [ 영문 첫글자 대문자 모드 없애기 ]
 <input type=”text” autocapitalize=”off” />
[ 자동완성 사용 안하기 ]
 <input type=”text” autocomplete=”off” />
[ 자동 오타교정 사용 안하기 ]
 <input type=”text” autocorrect=”off” />

 

종류

요소

전화 걸기

<a href=”tel:010-1234-5678″>전화걸기</a>

sms 문자 보내기

<a href=”sms:010-1234-5678″>문자보내기</a>

이메일 보내기

<a href=”mailto:clxm300@naver.com”>메일보내기</a>

sms 문자 창 띄우기

<a href=”sms:”>문자보내기</a>

이메일 창 띄우기

<a href=”mailto:”>메일보내기</a>

 

종류 요소
기본 모바일 키보드 <input type=”text” />
기본 모바일 키보드 <input type=”password” />
기본 모바일 키보드/이메일 키보드 <input type=”email” />
숫자 키보드 <input type=”tel” />
기본 모바일 키보드/url 키보드 <input type=”url” />
기본 모바일 키보드/’go’ 부분이 ‘search’로 변경된 키보드

<input type=”search” />

댓글 남기기

이메일은 공개되지 않습니다. 필수 입력창은 * 로 표시되어 있습니다