检测浏览器中是否使用IME输入

发布于 2024-12-03 08:44:30 字数 123 浏览 0 评论 0原文

我如何检查用户是否使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执手闯天涯 2024-12-10 08:44:30

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文