如何使用HTML或jQuery代码禁用对INPUT的Chrome拼写检查?

时间:2010-02-16 10:46:13

标签: html firefox input google-chrome spell-checking

我在HTML页面中有输入

<input id="SearchBox" type="text" value="" width="300px" 
       title="Search the card pool" autocomplete="off" maxlength="170">

我想用autospellcheck =“off”之类的东西来关闭它。有没有办法实现这个目标?

还有办法为Firefox关闭此功能吗?

2 个答案:

答案 0 :(得分:34)

使用spellcheck属性:

<textarea spellcheck="false"></textarea>

请参阅Spellcheck(MSDN)或Controlling spell checking in HTML forms(MDN)。

答案 1 :(得分:4)