3

我已经使用 CKEditor 的类在我的 PHP 页面中添加了一个 textarea 控件。
现在如果 textarea 加载为空,CKEditor 就可以工作了。但是,如果我尝试在 textarea 中加载 PHP 变量,页面会正确显示编辑器,但不会显示内容(并且编辑器似乎被阻止)。这是我的代码:

<div id="dialog-edit" title="Edit" style="display: none;">
    <table cellspacing="10">
        <tr>
            <td>
                <table>
                <form method="post" name="form">
                <tr>
                        <td>

                </td>
                <td>

                </td>
                <td>

                </td>
                </tr>
                </table>                    
                <br/>
                <textarea class="ckeditor" name="html" id="html" style="width: 766px; height: 390px; margin-left: 6px;"><?php echo htmlentities($html) ?></textarea><br/>
                <input type="submit" name="save" id="save" value="Salva modifiche" class="button" />
                </form>
            </td>
        </tr>
    </table>
</div>
<script type="text/javascript">
    function showDialogEdit()
    {
        $( "#dialog-edit" ).dialog({

                width: 680,
                height: 620,
                modal: true,
                open: function(event, ui)
                {

                }
            });
    }
</script>

textarea 必须将内容(作为 HTML 代码保存在 MySQL 数据库中)显示到 textarea 中,但它没有这样做。
是什么造成了这个问题?
谢谢。

4

2 回答 2

5

尝试按照 CKEditor 演示文件夹中的“代码替换”示例进行操作:

  1. 从 textarea 中删除“ckeditor”类。
  2. 修改jQueryUI对话框“open”事件,在对话框打开触发。

http://jsfiddle.net/mblase75/g2HFn/4/

$("#dialog-edit").dialog({
    width: 680,
    height: 620,
    modal: true,
    open: function (event, ui) {
        CKEDITOR.replace('html');
    }
});
于 2013-05-10T19:58:50.337 回答
1

写入ckeditor的配置文件(config.js)

CKEDITOR.editorConfig = function( config ) {

    /* ALLOW <?php ... ?> tags */
    config.protectedSource.push(/<\?[\s\S]*?\?>/g); 
    config.extraAllowedContent = 'style';
};
于 2015-05-08T10:59:06.820 回答