在setData之后,有什么方法可以在ckeditor中重置撤消吗?

时间:2019-02-01 07:18:59

标签: javascript ckeditor ckeditor4.x

我要在ckeditor中设置Data方法后重置撤消功能。

任何人都知道,请让我知道。

editor.setData(content,function(){
    this.checkDirty();
});

2 个答案:

答案 0 :(得分:0)

使用resetDirty()

  

重置编辑器的“脏状态”,以便随后调用   如果用户不做进一步的检查,checkDirty将返回false   更改内容。

alert( editor.checkDirty() ); // e.g. true

editor.resetDirty();

alert(editor.checkDirty() ); // false

答案 1 :(得分:0)

麻烦搜索时钟之后 所有的道路不工作 我不知道原因

reset

resetDirty

resetUndo

解决方案是

CKEDITOR.instances.editor1.setData('Text_Html',function() { this.resetUndo(); });