我遇到了这个问题。我有一个文本区域,我只想在它处于焦点时使用拼写检查。
<textarea id="editor"></textarea>
$('#editor').focusin(function(){
$(this).attr('spellcheck', true);
});
$('#editor').focusout(function(){
$(this).attr('spellcheck', false);
});
在 chrome 中,如果单词拼写错误,单词下方会出现一条红线。即使我关闭拼写检查器,红线仍然存在。如何删除此标记?