首页 > 开发 > 综合 > 正文

网页编辑器fckeditor常用函数

2024-07-21 02:53:30
字体:
来源:转载
供稿:网友
对于操作 网页编辑器fckeditor的朋友,有所帮助。其实我们用插件的方法制作也是不错的。功能可以更强。
 
插入: 
复制代码代码如下:

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


复制代码代码如下:

FCKCommands.RegisterCommand('htmlcode',new FCKDialogCommand( 'htmlcode', FCKLang.htmlcodeBtn, FCKPlugins.Items['htmlcode'].Path + 'fck_htmlcode.html', 500, 420 ) ) ; 
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+"]") ; 


注:相关教程知识阅读请移步到编辑器频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表