对于我的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