Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 jHTMLArea 作为所见即所得的编辑器。当 Chrome 拼写检查打开时,文本会带有红色波浪线下划线。如何禁用它?
我已经通过将 spellcheck=false 设置为 jHtmlArea 的内部 iframe 的主体来解决它。
使用 HTML5,您可以使用spellcheck=false. 您必须将此添加到textarea您的 jHTMLArea 中。
spellcheck=false
textarea
使用 jQuery,你可以做到这一点
$("textarea").attr('spellcheck', false)