这篇文章给大家分享js实现焦点进入文本框内关闭输入法,代码简单易懂,非常不错,具有参考借鉴价值,需要的朋友参考下吧
js实现焦点进入文本框内关闭输入法:imeMode
要用到的东西: imeMode:xxx
有四个参数
active 代表输入法为中文
inactive 代表输入法为英文
auto 代表打开输入法 (默认)
disable 代表关闭输入法
<INPUT onfocus=" this.style.imeMode='active' " /> <INPUT onfocus=" this.style.imeMode='inactive' " /> <INPUT onfocus=" this.style.imeMode='auto' " /> <INPUT onfocus=" this.style.imeMode='disabled' " />
总结
以上是JavaScript中焦点进入文本框内关闭输入法的实现核心代码分享的详细内容。更多信息请关注PHP中文网其他相关文章!