问题描述
我注意到我的拼写检查在Office 365 Outlook Web App中不起作用。检查HTML时,我看到以下内容:
div dir="ltr" class="[]" role="textBox" aria-multiline="true" aria-label="Message body" spellcheck="false" contenteditable="true"
spellcheck属性设置为false。我不确定为什么微软会这样做,因为这只是禁用了浏览器中的拼写检查功能。任何人都知道我可以在chrome中即时覆盖此扩展程序吗?
解决方法
我不知道用于此目的的现有扩展。但是,如果您在控制台中键入此命令,则会启用拼写检查:
$("[spellcheck=false]").attr({spellcheck: true})