JS操作word,客户端的word,有这么大的权限啊?
你是要找在word 中运行的宏吗?
之前开发过编辑器,遇到过这个问题,需要清楚word复制过来的附加内容,代码如下:
function cleanWord(html){ html = html.replace(/<!--\[if gte mso [0-9]{1,2}\]>[\s\S]*?<!\[endif\]-->/ig, ""); html = html.replace(/<style>[\s\S]*?mso[\s\S]*?<\/style>/ig, ""); html = html.replace(/ lang=".+?"/ig, ""); html = html.replace(/<o:p><\/o:p>/ig, ""); html = html.replace(/ class="Mso.+?"/ig, ""); html = html.replace(/ mso-spacerun: 'yes'/ig, ""); return html; }