我需要能够使用按钮打开/关闭内联编辑。有关内联编辑的示例,请参见此处:http: //nightly-v4.ckeditor.com/3559/samples/inlineall.html
我的标记是这样的:
<div contenteditable='true'>Mycontent</div>
使用 jQuery 我希望能够打开/关闭编辑器。
我试过设置contenteditable
为false,但这不起作用。contenteditable
切换设置时,编辑器不会加载回页面。
附录:我还需要在单击按钮时销毁所有 CKEditor 内联实例。我是这样做的:
//kill all ckeditors
for(k in CKEDITOR.instances){
var instance = CKEDITOR.instances[k];
instance.destroy();
}