我想禁用我的文本框上的拼写检查< 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>元素.