IME自動ONにできるのはIEだけ
IEコンポーネントやActiveXは新Edgeが育つまでは
OS上から完全に消し去ることはなさそうと思いました。
IME制御の動作確認
sample.html
<meta charset=utf-8>
<h3>ime-mode (IE専用)</h3>
<li> 日本語入力ON <input style="ime-mode: active" /> </li>
<li> 日本語入力OFF <input style="ime-mode: disabled" /> </li>
<h3>inputmode</h3>
一時期あったが廃止された
<li> 日本語入力ON <input inputmode="kana" /> </li>
<li> 日本語入力OFF <input inputmode="none" /> </li>
<h3>input type</h3>
特定の入力に入ったら日本語入力OFF。
自動ONにする方法はない
<li> 日本語入力OFF <input type="email" /> </li>
懸念点
- 旧Edgeでサポートされていたが、バージョンアップでなんと効かなくなった。
- 新Edgeの独自機能追加によりIME制御対応になるかもしれませんがそれは将来の話。
メモ: datalist
IE11にも対応していた。
<input type="text" name="name" list="options" />
<datalist id="options">
<option value="東京都"></option>
<option value="神奈川県"></option>
<option value="千葉県"></option>
</datalist>
Author And Source
この問題について(IME自動ONにできるのはIEだけ), 我々は、より多くの情報をここで見つけました https://qiita.com/tukiyo3/items/e3ee12163e13dd413ea2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .