在我的管理面板中,我有 2 个 fckeditor (2.6.4) 实例,但在 ff11 中,第二个实例不可见。在其他浏览器(包括ff10)没有这个问题。
$oFCKeditor = new FCKeditor('ps_short_description') ;
$oFCKeditor->Width = '600';
$oFCKeditor->Height = '300';
$oFCKeditor->BrowserPath = SHOP_WWW_PATH.'/upload/fck_files';
$oFCKeditor->Value = "";
$oFCKeditor->Create() ;
$oFCKeditor = new FCKeditor('ps_description') ;
$oFCKeditor->Width = '600';
$oFCKeditor->Height = '500';
$oFCKeditor->BrowserPath = SHOP_WWW_PATH.'/upload/fck_files';
$oFCKeditor->Value = "";
$oFCKeditor->Create() ;
ff11 和 ff9 中的 HTML 代码是相同的(Firebug)。
如何处理这个问题?