我刚下载CKEditor在我的网站上使用WYSIWYG编辑器,但是这段代码:
<div id="editor">
This is a test
</div>
<script>
CKEDITOR.replace( 'editor' );
</script>
或者这段代码:
<textarea id="editor">
this is a test
</textarea>
<script>
CKEDITOR.replace( 'editor' );
</script>
只隐藏div和textarea,没有显示WYSIWYG编辑器。
示例页面正在运行,对于我的页面,CSS和JS都已加载。
可能是什么问题?
编辑:
当我使用他们的示例代码时(在此声明:http://docs.ckeditor.com/#!/guide/dev_installation)
<!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>
它具有相同的行为(正在加载正确的JS文件)。
答案 0 :(得分:0)
首先检查javascript上没有错误。
用萤火虫检查。
答案 1 :(得分:0)
我添加了所有重要文件,现在正在使用