将CKEDITOR整合到textarea中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将CKEDITOR整合到textarea中相关的知识,希望对你有一定的参考价值。

我无法将CKEDITOR整合到textarea中。以下是代码:

<html>
  <head>
    <script type="text/javascript" src="localhost/ckeditor/ckeditor.js"></script> 
  </head>
  <body bgcolor=Bisque>

    <textarea class="ckeditor" id="body" name="body">
    Hii
    </textarea>

    <script type="text/javascript">
      CKEDITOR.replace('body');
    </script>
  </body>
</html>
答案

既然你报告说你没有文件夹localhost,就行了

<script type="text/javascript" src="localhost/ckeditor/ckeditor.js"></script>

是错的。浏览器正在尝试从与您的页面相同的目录级别的ckeditor.js文件夹中加载localhost。我假设文件夹ckeditor在你的服务器根文件夹中,所以使用这个:

<script type="text/javascript" src="/ckeditor/ckeditor.js"></script>

以上是关于将CKEDITOR整合到textarea中的主要内容,如果未能解决你的问题,请参考以下文章

将ckeditor应用于textarea

将普通textarea的样式修改为ckeditor的样式方法有三种

如何验证ckeditor5 textarea字段所需?

如何通过单击适配器类中代码的项目中的删除按钮来删除列表视图中的项目后重新加载片段?

从textarea复制CKEditor中的内容

用 jQuery 同步 CKEditor 和 TEXTAREA