对于CKeditor,有两个函数可用于从编辑器获取数据。
在下面的示例中,有一个名为p_editor
的实例,两个函数的输出相同。
var p_editor=CKEDITOR.replace( 'question_editor');
$('#PostQuestion').on('click', function() {
console.log( p_editor.getData());
console.log(p_editor.document.getBody().getHtml());
console.log(p_editor.document.getBody().getText());
});
所以我想知道这两个功能有什么不同。