JQ获取CKeditor的值

var editor = CKEDITOR.replace("content");
editor.setData("");
alert(CKEDITOR.instances.content.getData());  

var editor = CKEDITOR.replace("content");
alert(editor.getData()); 
原文地址:https://www.cnblogs.com/Alandre/p/3405363.html