IME:输入法编辑器(Input Method Editor),它是一种专门的应用程序。
点击输入框,自动转换输入法:
<input type="text" style="ime-mode:active" />
active:指定所有使用IME输入的字符,即激活本地语言输入法。
<input type="text" style="ime-mode:inactive" />
inactive:指定所有不使用IME输入的字符,即激活非本地语言输入法。
<input type="text" style="ime-mode:auto" />
auto:不影响IME的状态,与不指定ime-mode时一样。
<input type="text" style="ime-mode:disable" />
disable:完全禁止IME。