我在HTML页面中有一个输入

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

我想用autospellcheck=“off”之类的东西来关闭它。有没有办法做到这一点?
还有什么方法可以关闭火狐?

最佳答案

使用spellcheck属性:

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

请参见Spellcheck(msdn)或Controlling spell checking in HTML forms(mdn)。

08-19 08:32