Ckeditor:如何将按钮的源代码更改为按钮?

时间:2018-08-04 15:57:31

标签: javascript php ckeditor editor

我正在研究的功能是: 一个人粘贴一行代码,它将自动变成一个按钮,并成为一个人的帖子的一部分。

关于此功能,我正在与ckeditor合作。 但是问题来了。当我完成帖子并按照下图所示提交后,按钮仍然是源代码source code,而不是预期的按钮符号button sign

这是我打印帖子内容的部分:

        if($content != null){
            echo "<script>
                        CKEDITOR.replace( 'content',  {customConfig : 'simple_config.js' });
                  </script>";
            echo "<p style='word-wrap:break-word;' id='content'>".nl2br($content)."<br></p>";
        }

这是我尝试将源代码转换为按钮符号的部分:

    <script>
        CKEDITOR.replace( 'content',  {customConfig : 'simple_config.js' });
    </script>

有什么想法吗?非常感谢。

0 个答案:

没有答案