모바일 input 입력창에서 가상키보드 키패드 열기
하우코드
본문
onfocus="this.blur()" 적용
<input type="text" onfocus="this.blur()">
또는 jquery 에서 지정
$(':focus').blur();
html5에서 도입된 inputmode = "none"적용
<input type="text" inputmode="none">
inputmode에는 none, text, decimal, numeric, tel, search, email, url 등의 값을 줄수 있다
숫자의 경우
<input type=number name='coin_in' value='100' min=100 max=500000 pattern="[0-9]+" placeholder='선물할 코인'>
<input type="text" onfocus="this.blur()">
또는 jquery 에서 지정
$(':focus').blur();
html5에서 도입된 inputmode = "none"적용
<input type="text" inputmode="none">
inputmode에는 none, text, decimal, numeric, tel, search, email, url 등의 값을 줄수 있다
숫자의 경우
<input type=number name='coin_in' value='100' min=100 max=500000 pattern="[0-9]+" placeholder='선물할 코인'>
댓글목록
등록된 댓글이 없습니다.