清除WORD冗余格式并粘贴

长液漫漫

长液漫漫

2016-01-29 11:38

清除WORD冗余格式并粘贴,清除WORD冗余格式并粘贴
/ 清除WORD冗余格式并粘贴
function cleanAndPaste( html ) {
 // Remove all SPAN tags
 html = html.replace(/</?SPAN[^]*/gi, "" );
 // Remove Class attributes
 html = html.replace(/<(w[^]*) class=([^ |]*)([^]*)/gi, "<$1$3") ;
 // Remove Style attributes
 html = html.replace(/<(w[^]*) style="([^"]*)"([^]*)/gi, "<$1$3") ;
 // Remove Lang attributes
 html = html.replace(/<(w[^]*) lang=([^ |]*)([^]*)/gi, "<$1$3") ;
 // Remove XML elements and declarations
 html = html.replace(/<\??xml[^]*/gi, "") ;
 // Remove Tags with XML namespace declarations: <o:p</o:p
 html = html.replace(/</?w+:[^]*/gi, "") ;
 // Replace the &nbsp;
 html = html.replace(/&nbsp;/, " " );
 // Transform <P to <DIV
 var re = new RegExp("(<P)([^]*.*?)(</P)","gi") ; // Different because of a IE 5.0 error
 html = html.replace( re, "<div$2</div" ) ;
 
 insertHTML( html ) ;
}
展开更多 50%)
分享

猜你喜欢

清除WORD冗余格式并粘贴

电脑网络
清除WORD冗余格式并粘贴

word2019清除格式或样式

word
word2019清除格式或样式

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

Word2019如何设置跨文档粘贴格式

word
Word2019如何设置跨文档粘贴格式

巧用粘贴在Word中滤除HTML格式

办公软件
巧用粘贴在Word中滤除HTML格式

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

WPS文档怎么清除格式解决复制粘贴格式错乱的问题

电脑应用 计算机应用技术
WPS文档怎么清除格式解决复制粘贴格式错乱的问题

在Word2019文档中清除文本格式

word
在Word2019文档中清除文本格式

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

PSV《真三国无双7 猛将传》全武器代码一览

PSV《真三国无双7 猛将传》全武器代码一览

IE5+专有日历

IE5+专有日历
下拉加载更多内容 ↓