如何获取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的内容的主要内容,如果未能解决你的问题,请参考以下文章
当我进入Source视图时,如何跳转到CKEditor 4中的当前位置?