复制代码代码如下:
<input type = "Button" OnClick = "Cleanword ();" value = "Word 清理" />
limpar palavras = function () {
var editbody = fckeditorApi.getInstance ("text"). editordocument.body;
var html = fckeditorApi.getInstance ("text"). editordocument.body.innerText;
for (var intloop = 0; intloop <editbody.all.length; Intloop ++) {
el = editbody.all [Intloop];
el.removeattribute ("ClassName", "", 0);
el.removeattribute ("style", "", 0);
el.removeattribute ("font", "", 0);
}
html = html.replace (/<o: p> <// o: p>/g, "");
html = html.replace (/o:/g, "");
html = html.replace (/<font>/g, "");
html = html.replace (/<font>/g, "");
html = html.replace (/<pan>/g, "");
html = html.replace (/<pan>/g, "");
html = html.replace (/<spanlang = en-us>/g, "");
html = html.replace (/<p>/g, "");
html = html.replace (/<// p>/g, "");
html = html.replace (/<// span>/g, "");
FckeditorApi.getInstance ("text"). Editordocument.body.innerText = html;
}