我有一个spellcheck
属性设置为false
初始的 textarea ,并且没有红线,正如预期的那样。当我将属性更改为 时true
,线条再次按预期出现。
但是,一旦我false
再次将属性设置为,红线就不会更新。我想知道这是为什么,或者是否有人知道解决方法或让 CSS 更新的方法。
没有拼写检查:
使用拼写检查(但又没有拼写检查):
这是我的完整相关代码:
spellcheck.onclick = () => {
notes.focus();
notes.spellcheck = !notes.spellcheck;
spellcheckonoff.textContent = notes.spellcheck ? ' on' : ' off';
}
<textarea id="notes" placeholder="Type here" spellcheck="false" autofocus></textarea>
<button id="spellcheck" type="button">spellcheck <span id="spellcheckonoff">off</span></button>
不负相思意
相关分类