亲宝软件园·资讯

展开

fckeditor 常用函数 fckeditor 常用函数

人气:0
想了解fckeditor 常用函数的相关内容吗,在本文为您仔细讲解fckeditor 常用函数的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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+"]") ;
}

加载全部内容

相关教程
猜你喜欢
用户评论