html – 如何在输入type = text上禁用拼写检查?

前端之家收集整理的这篇文章主要介绍了html – 如何在输入type = text上禁用拼写检查?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想禁用我的文本框上的拼写检查< input type =“text”>以免没有任何丑陋的红色波澜.

我知道别人也提出了同样的问题,但是他们总是把spellcheck = false视为接受的答案.这是不正确的.这只适用于textarea,而不是输入.

我希望至少在铬上工作.

解决方法

http://blog.whatwg.org/the-road-to-html-5-spellchecking#compatibility

Google Chrome offers as-you-type spellcheck on <textarea> elements but not <input type=text> elements. It ignores the spellcheck attribute entirely. It does not offer the end user the option to change the default behavior or manually check individual fields.

所以,它结束了.

更新:自Chrome 13(2011年8月发布,此答案后3个月),也支持< input>元素.

原文链接:https://www.f2er.com/html/224564.html

猜你在找的HTML相关文章