관리 메뉴

엉망진창

input type에 쓰일 언어를 자동 지정 본문

Study_Web/CSS

input type에 쓰일 언어를 자동 지정

엉망진창 2008. 6. 12. 12:15

+ 글을 쓸 경우 한글로 입력되게 할 경우
<input type="text" size="10" style="ime-mode:active">

+ 글을 쓸 경우 영어로 입력되게 할 경우
<input type="text" size="10" style="ime-mode:inactive">

+ 글을 쓸경우 오직 영어외에는 못쓰게 할 경우
<input type="text size="10" style="ime-mode:disabled">

위에 보시다시피 스타일 부분이 바로 언어를 지정하는 부분입니다. style="ime-mode:active" 부분에서
"active - 한글 / inactive - 영어 / disabled - 오직 영어..."