DoCoMoのINPUTタグでistyleが使えなかった

今までDoCoMoの入力モードを変更するときはistyleで変更してきたけど
XHTMLの場合istyleが使用できないというのが今わかった。
一応はまったのでメモメモ。

詳しくはここを。

hex6.net - xhtmlで携帯3キャリア共通の初期入力モードを指定

一応自分でよく使うメモ

全角かな
<input type="text" name="hoge" style="-wap-input-format:&quot;*&lt;ja:h&gt;&quot;"
 />

半角カナ
<input type="text" name="hoge" style="-wap-input-format:&quot;*&lt;ja:hk&gt;&quot;"
 />

半角英字
<input type="text" name="hoge" style="-wap-input-format:&quot;*&lt;ja:en&gt;&quot;"
 />

半角数字
<input type="text" name="hoge" style="-wap-input-format:&quot;*&lt;ja:n&gt;&quot;"
 />