我想在我的网页上添加一个编辑器(请参阅pic http://img8.imageshack.us/img8/7664/editorw.jpg attach)。我怎么能这样做?!
答案 0 :(得分:1)
屏幕截图中的编辑器是FCK编辑器的一部分。您可以下载CKEditor(FCKEditor的新版本)并使用以下代码在您的页面中创建编辑器:
<script type="text/javascript" src="ckeditor.js"></script>
<textarea cols="80" id="editor2" name="editor2" rows="10"><p>This is some <strong>sample text</strong>. You are using <a
href="http://www.fckeditor.net/">CKEditor</a>.</p></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)