我正在尝试将 ckeditor 集成到我用 java 编写的带有 play2 的网站中。
现在我下载了 javascript 文件并阅读了示例。
我认为重要的部分是 ckeditor.js
<script type="text/javascript" src="/assets/javascripts/ckeditor.js"></script>
我还使用了样本中完全相同的形式
<form action="sample_posteddata.php" method="post">
<label for="editor1">
CKEditor using the <code>docprops</code> plugin and working in the Full Page mode:</label>
<textarea cols="80" id="editor1" name="editor1" rows="10"><html><head><title>CKEditor Sample</title></head><body><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></body></html></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'editor1',
{
fullPage : true,
extraPlugins : 'docprops'
});
//]]>
</script>
<p>
<input type="submit" value="Submit" />
</p>
</form>
但它不起作用,它只是呈现一个普通的文本区域。我正在使用 twitter bootstrap + jquery 1.7.1。
也许我忽略了一个重要的部分?