更改 IPAD 上文本区域中使用的拼写检查语言
我们可以使用纯 HTML 更改拼写检查器语言吗?
或者它是否使用设备设置和 Safari Mobile 设置(语言)?
Can we change the spellchecker language using plain HTML?
Or does it use the device settings and Safari Mobile settings (language)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,没有。您可以在输入元素上设置
lang
属性,例如,但 HTML5 草案甚至没有表明这会影响拼写检查,并且据我所知,这并不影响它。语言的选择由用户通过浏览器的用户界面以依赖于浏览器的方式进行。
Unfortunately, no. You can set the
lang
attribute on the input element, say<input lang=de>
, but HTML5 drafts do not even suggest that this would affect the spellchecking, and as far as I see, it does not affect it. The selection of the language is to be made by the user, via the browser’s user interface, in a browser-dependent manner.