主题: 不是通过粘贴的方式,是通过js将本地Word转换为htm,但是转换后的htm中有很多Word转换来的
作者: shawn, 发布日期: 2012-03-01 09:42:50, 浏览数: 3001
       不是通过粘贴的方式,是通过js将本地Word转换为htm,然后读取转换到本地的htm的内容,到编辑器,发现内容中的有的发生了格式的改变,通过粘贴的方式就没事。
作者: shawn, 发布日期: 2012-03-01 10:50:27

读取js将word生成到本地的htm,并通过如下方式转换,

var str, fso, txtfile, strValue;
var ForReading = 1, ForWriting = 2;
fso = new ActiveXObject("Scripting.FileSystemObject");


txtfile = fso.OpenTextFile("C:\\defaultFileWord.htm", ForReading);
while (!txtfile.AtEndOfStream) {
    strValue = strValue + txtfile.ReadLine();
   
}

txtfile.Close();
str = strValue;

str = K.clearMsWord(str, self.filterMode ? self.htmlTags : K.options.htmlTags);
self.insertHtml(strValue).hideDialog().focus();

 

 

插入到编辑器后,格式发生了变化,请问有遇到的吗?

谢谢。

 

回复
发表新帖 发表回复