使用Chrome扩展程序进行编辑时,html页面上的红色拼写错误行

时间:2015-10-03 23:29:24

标签: jquery html google-chrome-extension

对于我的chrome扩展程序,我使用jQuery在网页上编辑HTML文档的正文。每次我这样做,一个波浪形的红色拼写下划线显示在页面上的一些单词,就好像我在Microsoft Word中。如何删除这些下划线?

我的功能用于突出显示页面中的文字:

function highlight(colour) {
    document.designMode = "on";
    document.execCommand("BackColor", false, colour);
    document.designMode = "off";
}

https://en.wikipedia.org/wiki/Main_Page的屏幕截图:

https://www.dropbox.com/s/t4ei4454ycho1a8/Screen%20Shot%202015-10-03%20at%207.33.17%20PM.png?dl=0

不重复:Disabling Firefox and Chrome spell checking in iframe-based text editors

  • 错误下划线出现在html页面的主体上,而不是i-framed文本编辑器

0 个答案:

没有答案