如何禁用 iPhone 上文本输入的拼写检查器
有时拼写检查器是不必要的,验证码、用户名、电子邮件等。有没有办法在某些文本输入/文本区域禁用它?
Sometimes the spell checker is unnecessary, captchas, usernames, emails, etc. Is there a way disable it on some text inputs/text areas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如我的好友 Jonathan Stark 所指出的,您应该能够使用自动更正和自动完成等属性来实现您正在寻找的效果:
刚刚在 OS4 中进行了测试,它正在工作。
更新:从 iOS5 开始,
autocapitalize
中的on
和off
值已被弃用。使用none
完全禁用自动大写。As noted by my buddy Jonathan Stark, you should be able to use attributes like autocorrect and autocomplete to achieve the effect you're looking for:
Just tested in OS4 and it's working.
UPDATE: As of iOS5
on
andoff
values inautocapitalize
have been deprecated. Usenone
to completely disable automatic capitalization.HTML5 中有一个拼写检查属性:
Re: http://blog .whatwg.org/the-road-to-html-5-spellchecking
浏览器支持有限。
There is a spell check attribute in HTML5:
Re: http://blog.whatwg.org/the-road-to-html-5-spellchecking
Browser support is limited.