IMEの入力モードの指定(ime-mode)
<html> <head> <title>IMEの入力モードの指定</title> <style type="text/css"> <!-- .c1 { width: 300px; ime-mode: inactive; } .c2 { width: 300px; ime-mode: active; } //--> </style> </head> <body> <form action="" method=""> 英数字入力<br> <input type="text" class="c1"><br> <br> 漢字入力<br> <input type="text" class="c2"><br> </form> </body> </html>
〔 実行する 〕