web 问题,javascript,富文本编辑器。fckeditor 插件

现在kindeditor最新版本有一键排版和去除word格式的功能。其中去除word格式的功能是把word格式都去掉,只在分段处添加一个<p>和</p>。排版只是在<p>... 现在kindeditor最新版本有一键排版和去除word格式的功能。其中去除word格式的功能是把word格式都去掉,只在分段处添加一个<p>和</p>。排版只是在<p>处添加了text-indent:2em属性。我现在要把这两个功能移植到fckeditor上面。但我js不是很熟悉,提取不出来。有类似的插件么?最好能是自己写的。fckeditor的强制存为文本文档功能经测试不能满足要求额。。
分数不多,开始的提问分类错了,满意答案一起给分http://zhidao.baidu.com/question/373732499?fr=middle_auto
展开
 我来答
濮焮戎fO
2012-02-04 · TA获得超过371个赞
知道小有建树答主
回答量:402
采纳率:100%
帮助的人:487万
展开全部
去除word格式指从word粘贴这个功能吧?
这个功能的函数是:
function _clearMsWord(html, htmlTags) {
html = html.replace(/<meta[\s\S]*?>/ig, '')
.replace(/<![\s\S]*?>/ig, '')
.replace(/<style[^>]*>[\s\S]*?<\/style>/ig, '')
.replace(/<script[^>]*>[\s\S]*?<\/script>/ig, '')
.replace(/<w:[^>]+>[\s\S]*?<\/w:[^>]+>/ig, '')
.replace(/<o:[^>]+>[\s\S]*?<\/o:[^>]+>/ig, '')
.replace(/<xml>[\s\S]*?<\/xml>/ig, '')
.replace(/<(?:table|td)[^>]*>/ig, function(full) {
return full.replace(/border-bottom:([#\w\s]+)/ig, 'border:$1');
});
return _formatHtml(html, htmlTags);
}
htmlTags = {
font : ['color', 'size', 'face', '.background-color'],
span : [
'.color', '.background-color', '.font-size', '.font-family', '.background',
'.font-weight', '.font-style', '.text-decoration', '.vertical-align', '.line-height'
],
div : [
'align', '.border', '.margin', '.padding', '.text-align', '.color',
'.background-color', '.font-size', '.font-family', '.font-weight', '.background',
'.font-style', '.text-decoration', '.vertical-align', '.margin-left'
],
table: [
'border', 'cellspacing', 'cellpadding', 'width', 'height', 'align', 'bordercolor',
'.padding', '.margin', '.border', 'bgcolor', '.text-align', '.color', '.background-color',
'.font-size', '.font-family', '.font-weight', '.font-style', '.text-decoration', '.background',
'.width', '.height', '.border-collapse'
],
'td,th': [
'align', 'valign', 'width', 'height', 'colspan', 'rowspan', 'bgcolor',
'.text-align', '.color', '.background-color', '.font-size', '.font-family', '.font-weight',
'.font-style', '.text-decoration', '.vertical-align', '.background', '.border'
],
a : ['href', 'target', 'name'],
embed : ['src', 'width', 'height', 'type', 'loop', 'autostart', 'quality', '.width', '.height', 'align', 'allowscriptaccess'],
img : ['src', 'width', 'height', 'border', 'alt', 'title', 'align', '.width', '.height', '.border'],
'p,ol,ul,li,blockquote,h1,h2,h3,h4,h5,h6' : [
'align', '.text-align', '.color', '.background-color', '.font-size', '.font-family', '.background',
'.font-weight', '.font-style', '.text-decoration', '.vertical-align', '.text-indent', '.margin-left'
],
pre : ['class'],
hr : ['class', '.page-break-after'],
'br,tbody,tr,strong,b,sub,sup,em,i,u,strike,s,del' : []
};
fck里面可以配置按钮的显示的,你自己弄个图标放上去然后加这个js就行了。
更多追问追答
追问
就是从word里面复制文本
return _formatHtml(html, htmlTags);这一句中的_formatHtml是另外一个函数吧?
追答
对,我给的那个就是从word里面复制文本。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式