为你的web加上fckeditor在线编辑器

新建个js文件,里面的内容如下

(function(jQuery){

$.fckeditor = function(name){
var oFCKeditor = new FCKeditor(name);
oFCKeditor.BasePath = "fckeditor/" ;
oFCKeditor.ToolbarSet = "simple";
oFCKeditor.ReplaceTextarea() ;
}

})(jQuery);

BasePath是指fckeditor文件在哪。上面写的是在fckeditor文件下--注意有个斜杠“/”,代表fckeditor文件下的所有文件。

你可能感兴趣的:(JavaScript,js,Web,fckeditor,编辑器)