我要在ckeditor中设置Data方法后重置撤消功能。
任何人都知道,请让我知道。
editor.setData(content,function(){
this.checkDirty();
});
答案 0 :(得分:0)
重置编辑器的“脏状态”,以便随后调用 如果用户不做进一步的检查,checkDirty将返回false 更改内容。
alert( editor.checkDirty() ); // e.g. true
editor.resetDirty();
alert(editor.checkDirty() ); // false
答案 1 :(得分:0)
麻烦搜索时钟之后 所有的道路不工作 我不知道原因
解决方案是
CKEDITOR.instances.editor1.setData('Text_Html',function() { this.resetUndo(); });