PHP配置FCKEditor

WBOY
Libérer: 2016-06-23 14:34:44
original
851 Les gens l'ont consulté

    php果然简单好学,就连配置FCKEditor都如此轻松,本来是打算花一到两个小时配置完成它就不错了,没想到从下载最新版本到配置成功也就不到半小时.想起当年在java下配置FCKEditor时那个艰辛......
    下面记录下配置方法,把下载下来的zip文件解压到php网站的根目录下,默认文件夹名是"fckeditor"
    在需要加入编辑器的页面里面引用fckeditor/fckeditor.php,即

php  include ( " fckeditor/fckeditor.php " ); ?>


    在需要加入编辑器的地方加入如下代码: 

$oFCKeditor   =   new  FCKeditor( ' FCKeditor1 ' ) ; // 建立对象
$oFCKeditor -> BasePath  =   ' FCKeditor/ '  ; // FCKeditor所在的位置
$oFCKeditor -> ToolbarSet  =   ' Default '  ; // 工具按钮
$oFCKeditor -> Width  =   ' 50% ' ; // 宽
$oFCKeditor -> Height  = ' 500 ' ; // 高
$oFCKeditor -> Value  = ' Hello ' ; // 默认显示的文字
$oFCKeditor -> Create() ;

    其中FCKeditor1对应textarea中的name属性
    看看吧,不出意外的话配置成功。
    如果你感觉FCKEditor提供的功能太多,有许多功能用不到的话,可以自己建立自定义的ToolbarSet具体方法就是打开fckediotr目录下的fckconfig.js,加入如下代码:

// 在名为"Default"的toolbarset里面包含了所有fck的功能,英语好的自己看看吧
FCKConfig.ToolbarSets[ " 自定义toolbarset名称 " ] = [ [需要显示的功能]]


                    就这么多吧,应该没什么问题了
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal