PHP如何将编辑器添加到新页面

时间:2009-11-10 08:47:22

标签: php

我想在我的网页上添加一个编辑器(请参阅pic http://img8.imageshack.us/img8/7664/editorw.jpg attach)。我怎么能这样做?!

2 个答案:

答案 0 :(得分:1)

屏幕截图中的编辑器是FCK编辑器的一部分。您可以下载CKEditor(FCKEditor的新版本)并使用以下代码在您的页面中创建编辑器:

<script type="text/javascript" src="ckeditor.js"></script>    
<textarea cols="80" id="editor2" name="editor2" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a 

href="http://www.fckeditor.net/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
                <script type="text/javascript">
                //<![CDATA[

                    // This call can be placed at any point after the
                    // <textarea>, or inside a <head><script> in a
                    // window.onload event handler.

                    // Replace the <textarea id="editor"> with an CKEditor
                    // instance, using default configurations.
                    CKEDITOR.replace( 'editor2' );

                //]]>
                </script>

请确保包含ckeditor.js的有效路径,您也可以参阅documentation了解详情。

另外,请确保您拥有用户输入的清洁代码(例如白色标签列表),因为如果您不这样做,您的网站将会受到XSS攻击。

答案 1 :(得分:0)

如果您询问HTML编辑器,请查看TinyMCECKEditor:)