时间:2021-07-01 10:21:17 帮助过:6人阅读
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() ;
// 在名为"Default"的toolbarset里面包含了所有fck的功能,英语好的自己看看吧
FCKConfig.ToolbarSets[ " 自定义toolbarset名称 " ] = [ [需要显示的功能]]