添加FCKeditor插件需要注意的地方
程序员文章站
2022-06-16 19:39:08
于是在上wc之际决定要改造一下编辑器.不过我一般动手之前会google一下,这样往往会很有效果,发现了其实fckeditor支持插件的,很多插件经过简单的配制就可以使用了。...
于是在上wc之际决定要改造一下编辑器.不过我一般动手之前会google一下,这样往往会很有效果,发现了其实fckeditor支持插件的,很多插件经过简单的配制就可以使用了。不过这方面讲怎么用插件的资料就很少了(也许我太笨),给你一个插件包,究竟要怎么用呢?试验了几个插件也找到了相应的方法,其实很简单的.
1.把插件放到相应的插件目录"/fckeditor/edito/plugins/"里面.
2.打开"/fckeditor/fckconfig.js",找到"fckconfig.toolbarsets["default"] = ["的那一段,可以选一个位置来增加一个插件,工具位置也可以随便调整的.
复制代码 代码如下:
fckconfig.toolbarlocation = 'in' ;
fckconfig.toolbarsets["default"] = [
['source',/*'bbcode',*/'docprops','-','save','newpage','preview','-','templates'],
['cut','copy','paste','pastetext','pasteword','-','print','spellcheck'],
['undo','redo','-','find','replace','-','selectall','removeformat'],
['form','checkbox','radio','textfield','textarea','select','button','imagebutton','hiddenfield'],
//'/',
['bold','italic','underline','strikethrough','-','subscript','superscript'],
['orderedlist','unorderedlist','-','outdent','indent','blockquote','creatediv'],
['justifyleft','justifycenter','justifyright','justifyfull'],
['link','unlink','anchor'],
['image','flash','remoteupload','insertplayer','kmp','youtube','insertcode','table','rule','smiley','specialchar','pagebreak'],
//'/',
['style','fontformat','fontname','fontsize'],
['textcolor','bgcolor'],
['fitwindow','showblocks','-','about'] // no comma for the last row.
] ;
3.找到"fckconfig.pluginspath = fckconfig.basepath + 'plugins/' ;" 可以在下面添加对应的插件,怎么添加要看插件是否有多语言版本,就下面的2种方法.不过要非常注意的是:一定要区分大小写,与插件中定义的必须一致.因为我做的跨域的,有的插件还需要设置document.cookie="jb51.net".
复制代码 代码如下:
fckconfig.pluginspath = fckconfig.basepath + 'plugins/' ;
fckconfig.plugins.add( 'remoteupload', 'en,zh-cn' ) ;
fckconfig.plugins.add( 'insertplayer' ) ;
fckconfig.plugins.add( 'kmp') ;
fckconfig.plugins.add( 'youtube','en,zh-cn') ;
fckconfig.plugins.add( 'insertcode') ;
....
4.有的插件(比如:insertcode,就是我们写blog的时候用的"插入代码"),在后台编辑后没有相关的css样式,看不到效果(这篇文章的代码就只在一个文本框中),那么怎么样做可以立即看到效果呢? 我们可以找到"fckconfig.editorareacss = fckconfig.basepath + 'css/fck_editorarea.css' ", 这个"fck_editorarea.css"就是后编辑区域的样式,我们可以把insertcode中的css内容复制到这里就可以了.简单吧.
本来想简单的用迷你博客备忘一下,可写不下,感觉用blog写这些让别人觉得我很白痴.嘿嘿.以后分工好了,迷你博客写想法,这里就写去实现想法的过程.
下一篇: jsp Ewebeditor使用说明