我在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)。