Eveningstar

[form]input 입력시 기본설정 한글로 입력하기 본문

HTML&CSS

[form]input 입력시 기본설정 한글로 입력하기

두루루루루 2018. 12. 20. 17:44


* input 속성 중에 아래의 속성을 태그에 넣어주면 키보드 입력시 한글이 기본설정으로 입력가능

* textarea에도 사용가능


1
2
3
4
5
6
7
<!-- 한글 -->
<input type="text" id="" name="" style="ime-mode:active" >
<textarea id="" name="" row="9" style="ime-mode:active" ></textarea>
<!-- 영문 -->
<input type="text" id="" name="" style="ime-mode:inactive" >
<textarea id="" name="" row="9" style="ime-mode:inactive" ></textarea>
 
cs


- active일때 한글

- inactive는 영문

- auto는 설정언어

- disabled는 영문키만 가능(키보드 전환불가)



☞모질라 MDN페이지 바로가기

Comments