fckeditor 常用函数

网络编程 2025-03-14 09:47www.168986.cn编程入门

对于操作 fckeditor 的朋友们,制作插件是一种非常实用且功能强大的方法。通过插件,我们可以扩展编辑器的功能,使其更加符合我们的需求。

```javascript

oEditor.FCKSelection.GetSelectedElement();

oEditor.FCK.InsertHtml("<br />");

FCKCommands.RegisterCommand('htmlcode', new FCKDialogCommand(

'htmlcode',

FCKLang.htmlcodeBtn,

FCKPlugins.Items['htmlcode'].Path + 'fck_htmlcode.html',

500,

420

) );

// 创建新的工具栏按钮,用于执行上面注册的'htmlcode'命令

var ohtmlcode = new FCKToolbarButton('htmlcode', FCKLang.htmlcodeBtn);

ohtmlcode.IconPath = FCKPlugins.Items['htmlcode'].Path + 'htmlcode.GIF';

FCKToolbarItems.RegisterItem('htmlcode', ohtmlcode);

// 创建用于执行htmlcode操作的对象

var FCKhtmlcode = new Object();

// 当弹出窗口的OK按钮被点击时,调用此方法

FCKhtmlcode.Add = function(strtemp, str) {

FCK.InsertHtml("["+str+"]<br>" + strtemp + "<br>[/"+str+"]");

};

```

通过这种方式,我们可以轻松地扩展 fckeditor 的功能,制作出更符合我们需求的编辑器插件。如果你正在使用 `cambrian.render('body')` 这样的代码来渲染页面,那么这种插件制作方法无疑会对你有所帮助。通过这种方式,你可以根据需要自定义编辑器的功能,提高你的工作效率。

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by