Maison >interface Web >js tutoriel >js清理Word格式示例代码_javascript技巧

js清理Word格式示例代码_javascript技巧

WBOY
WBOYoriginal
2016-05-16 17:00:081135parcourir
复制代码 代码如下:



cleanWord = function(){
var editBody = FCKeditorAPI.GetInstance("text").EditorDocument.body;
var html = FCKeditorAPI.GetInstance("text").EditorDocument.body.innerText;
for(var intLoop=0;intLoopel=editBody.all[intLoop];
  el.removeAttribute("className","",0);
  el.removeAttribute("style","",0);
  el.removeAttribute("font"," ",0);
}
html=html.replace(/

 /g,"");
html=html.replace(/o:/g,"");
html=html.replace(//g,"");
html=html.replace(//g,"");
html=html.replace(//g,"");
html=html.replace(//g,"");
html=html.replace(//g,"");
html=html.replace(/

/g,"");
html=html.replace(//g,"");
html=html.replace(//g,"");
FCKeditorAPI.GetInstance("text").EditorDocument.body.innerText=html;
}

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn