2011. 6. 28.

Changing Ime mode ImeMode

http://www.kawada.kr/xe/?document_srl=3894

한글입력을 기본으로 하고 싶을때 ,


클래스 속성중 imeMode라는 것을 'active'바꾸면 기본적으로 한글 입력이 된다. 대부분의 포털들이 이렇게 설정이 되어 있다.

//자바스크립트에서

document.all.txtInput.style.imeMode="active"; //한글
document.all.txtInput.style.imeMode="inactive"; //반자
document.all.txtInput.style.imeMode="disabled"; // 영문


// 스타일로

style=" ime-mode: active"
style=" ime-mode: inactive"
style=" ime-mode: disabled"

...........


// 아래는 html본문에 다음과 같은 input 요소가 있다고 가정.





댓글 없음:

댓글 쓰기