如何获取ckeditor的内容

Posted 黎波波

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何获取ckeditor的内容相关的知识,希望对你有一定的参考价值。

  <tr id="nr">
             <th style="width:10%"><span class="a_hong">*</span> 荣誉说明:</th>
             <td colspan="3" style="text-align:left;">
                  <textarea id="content" name="content" class="ckeditor">${ryInfo.content}</textarea>
             </td>
      </tr>

 

<script type="text/javascript">
var editor = null;
window.onload = function () {
editor = CKEDITOR.replace("content"); //参数‘content’是textarea元素的name属性值,而非id属性值
}
function savaData()(
  var content = CKEDITOR.instances.content.getData(); //获取值
}
</script>

以上是关于如何获取ckeditor的内容的主要内容,如果未能解决你的问题,请参考以下文章

ajax提交时 富文本CKEDITOR 获取不到内容

当我进入Source视图时,如何跳转到CKEditor 4中的当前位置?

CKEditor 5如何从任何小部件/模型/视图中获取单击,更新和删除的事件

如何将CKeditor编辑器的上传和thinkphp结合

JS获取CkEditor在线编辑的内容

从 CKEditor 获取格式化的 HTML