检测浏览器中是否使用IME输入
我如何检查用户是否使用 IME 输入文本?例如,如果您查看 Google 文档,他们似乎会使用某种中间 IFrame 来捕获它,然后再将其放入实际文档
中。How would I go about checking whether the user is using an IME to input text? For instance, if you look at Google Docs, they seem to use some kind of intermediate IFrame to capture it before putting it in the actual document <div>
s.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
W3C DOM Level 3 指定了用于检测 IME 输入的事件
compositionstart
和相关事件。对于不支持这些事件的浏览器,需要进行一些修改。Closure 库有一个示例:http://closure- library.googlecode.com/svn/docs/closure_goog_events_imehandler.js.source.html
The W3C DOM Level 3 specifies the event
compositionstart
and friends for detecting IME input. For browsers that don't support those events, some hacking around is required.The Closure library has an example for this: http://closure-library.googlecode.com/svn/docs/closure_goog_events_imehandler.js.source.html