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 を wysiwyg エディターとして使用しています。また、Chrome のスペルチェックがオンになっていると、テキストに赤い波線の下線が引かれます。無効にする方法は?
HTML5 では、これを行うことができますspellcheck=false。textareaこれをjHTMLAreaの に追加する必要があります。
spellcheck=false
textarea
jQueryを使用すると、それを行うことができます
$("textarea").attr('spellcheck', false)
jHtmlAreaの内側のiframeのbodyに spellcheck=false を設定することで解決しました。