推荐应用

Discuz多国语言翻译

Discuz多国语言翻译

文库系统/文档系统

文库系统/文档系统

美食菜谱发布菜谱

美食菜谱发布菜谱

漫画阅读中心

漫画阅读中心

小说阅读中心

小说阅读中心

语言包切换基本文件

语言包切换基本文件

成语闯关

成语闯关

谷歌登錄Google登錄

谷歌登錄Google登錄

轻APP

轻APP

网上祭祀祭拜扫墓

网上祭祀祭拜扫墓

手机MP4视频上传

手机MP4视频上传

彩票开奖号码公布

彩票开奖号码公布

DZX泰语/傣语

DZX泰语/傣语

DZX日文版(日本语)

DZX日文版(日本语)

解决编辑器中word粘贴内容功能失效的方法

发布于 2012-11-28
某些站点的编辑器中可能会出现word粘贴功能不能正常使用的问题,特给出以下解决方法:
该方法可能不一定完全解决你的问题
打开文件:\static\js\edit.js
查找:function pasteWord(str) {
var mstest = /<\w[^>]* class="?[MsoNormal|xl]"?/gi;
if(mstest.test(str)){
str = str.replace(//gi, "");
str = str.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3");
str = str.replace(/<(\w[^>]*) style="([^"]*)"([^>]*)/gi, function ($1, $2, $3, $4) {
var style = '';
re = new RegExp('(^|[;\\s])color:\\s*([^;]+);?', 'ig');
match = re.exec($3);
if(match != null) {
style += 'color:' + match[2] + ';';
}
re = new RegExp('(^|[;\\s])text-indent:\\s*([^;]+);?', 'ig');
match = re.exec($3);
if(match != null) {
style += 'text-indent:' + parseInt(parseInt(match[2]) / 10) + 'em;';
}
re = new RegExp('(^|[;\\s])font-size:\\s*([^;]+);?', 'ig');
match = re.exec($3);
if(match != null) {
style += 'font-size:' + match[2] + ';';
}
if(style) {
style = ' style="' + style + '"';
}
return '<' + $2 + style + $4;
});
str = str.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3");
str = str.replace(/<\\?\?xml[^>]*>/gi, "");
str = str.replace(/<\/?\w+:[^>]*>/gi, "");
str = str.replace(/ /, " ");
var re = new RegExp("(]*>.*?)(<\/P>)", 'ig');
str = str.replace(re, "");
if(!wysiwyg) {
str = html2bbcode(str);
}
insertText(str, str.length, 0);
}
}
替换为function pasteWord(str) {
var mstest = /<\w[^>]* class="?[MsoNormal|xl]"?/gi;
//if(mstest.test(str)){
str = str.replace(//gi, "");
str = str.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3");
str = str.replace(/<(\w[^>]*) style="([^"]*)"([^>]*)/gi, function ($1, $2, $3, $4) {
var style = '';
re = new RegExp('(^|[;\\s])color:\\s*([^;]+);?', 'ig');
match = re.exec($3);
if(match != null) {
style += 'color:' + match[2] + ';';
}
re = new RegExp('(^|[;\\s])text-indent:\\s*([^;]+);?', 'ig');
match = re.exec($3);
if(match != null) {
style += 'text-indent:' + parseInt(parseInt(match[2]) / 10) + 'em;';
}
re = new RegExp('(^|[;\\s])font-size:\\s*([^;]+);?', 'ig');
match = re.exec($3);
if(match != null) {
style += 'font-size:' + parseInt(match[2]) + 'pt;';
}
if(style) {
style = ' style="' + style + '"';
}
return '<' + $2 + style + $4;
});
str = str.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3");
str = str.replace(/<\\?\?xml[^>]*>/gi, "");
str = str.replace(/<\/?\w+:[^>]*>/gi, "");
str = str.replace(/ /, " ");
var re = new RegExp("(]*>.*?)(<\/P>)", 'ig');
str = str.replace(re, "");
if(!wysiwyg) {
str = html2bbcode(str);
}
insertText(str, str.length, 0);
//}
}
扫一扫添加有偿QQ
扫一扫添加微信客服