如何使用css或任何其他方法禁用IME ?我的问题是,当将语言改为日语时,在文本框中输入双字节数时,我需要防止这一点。
我使用
style="ime-mode:disabled"除了google之外,它还能运行所有其他浏览器。
发布于 2014-09-08 03:23:42
将属性类型更改为tel。它的工作方式就像ime模式在chrome中是不活动的,其他浏览器支持html5。
element.setAttribute('type', 'tel');我建议您同时使用ime模式和type="tel"。
样式:ime模式
Chrome Firefox (Gecko) IE Opera Safari (WebKit)
Not supported 3.0 (1.9) 5.0 Not supported Not supported输入type="tel"
Chrome Firefox IE Opera Safari Safari Mobile
6+ 4+ 10+ 10.6+ 5.1+ iOS 3.1+使用两个的
Chrome Firefox IE Opera Safari Safari Mobile
6+ 3.0 (1.9) 5.0 10.6+ 5.1+ iOS 3.1+https://stackoverflow.com/questions/15520410
复制相似问题