下效果
下载插件放到fckeditor/editor/plugins文件夹下 修改fckeditor文件夹下的fckconfig.js 找到FCKConfig.PluginsPath = FCKConfig.BasePath + 'plugins/' ; 在下面加上FCKConfig.Plugins.Add('insertvideo', 'zh-cn,en'); 最后在工具栏里引用'insertvideo' OK
http://bbs.51aspx.com/showtopic-5069.html
在FCK的目录下找到fckconfig.js打开 找到类似以下代码 FCKConfig.ToolbarSets["Default"] = [ ['DocProps','-','Save','NewPage','Print','-','Templates'], ['Cut','Copy','Paste','PasteText','PasteWord','SpellCheck'], ['Find','Replace','-','SelectAll','RemoveFormat'], ['OrderedList','UnorderedList','Outdent','Indent','-','Subscript','Superscript'], ['Anchor','Link','Unlink'], ['Undo','Redo'], 其中每个单引号引起来的就是工具项中间以,分鬲所以 FCKConfig.ToolbarSets["Default"] = [ ['DocProps','-','Save','NewPage','Print','-','Templates'], ['Cut','Copy','Paste','PasteText','PasteWord','SpellCheck'], ['Find','Replace','-','SelectAll','RemoveFormat'], ['OrderedList','UnorderedList','Outdent','Indent','-','Subscript','Superscript'], ['Anchor','Link','Unlink'], ['Undo','Redo','insertvideo'], 这样修改就可以了如果提示未知工具的话就是你没有添加插件在上面有说明怎样添加插件