fckeditor 内容框无法写字

来源:百度知道 编辑:UC知道 时间:2024/06/22 10:16:03
内容框为空白,鼠标都不能点,实际上内容框中是有字的,前台都能显示,搞不懂为什么

1、那个框被设定为只读。
2、代码有问题。
<?php
require_once "../fckeditor/fckeditor.php";
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '../fckeditor/' ;
$oFCKeditor->ToolbarSet = 'Default' ;
$oFCKeditor->InstanceName = 'detail' ;
$oFCKeditor->Value = $row['detail'] ;//在编辑器显示内容
$oFCKeditor->Width = '100%' ;
$oFCKeditor->Height = '600' ;
$oFCKeditor->Create() ;
?>

查看一下帮助与支持