如何在 php 页面中集成 CKEditor 4?我查看了类似的主题,例如如何在 php 页面中添加或嵌入 CKEditor,但是当我提取 zip 文件时,没有名为ckeditor.php的文件。
问问题
2263 次
2 回答
0
样品形式:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A Simple Page with CKEditor</title>
<!-- Make sure the path to CKEditor is correct. -->
<script src="../ckeditor.js"></script>
</head>
<body>
<form>
<textarea name="editor1" id="editor1" rows="10" cols="80">
This is my textarea to be replaced with CKEditor.
</textarea>
<script>
// Replace the <textarea id="editor1"> with a CKEditor
// instance, using default configuration.
CKEDITOR.replace( 'editor1' );
</script>
</form>
</body>
</html>
于 2015-03-11T06:53:37.393 回答
0
目前 CKEditor v4 没有 PHP 连接器,因为一些功能仍在等待从 v3 移植。有人报告说 v3 连接器已成功集成到 v4 中,因此您可以随时尝试并使用最新 3.6.x 包中的代码。
请参阅表格上的帖子以了解更多信息。
于 2013-07-01T10:28:01.077 回答