且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

删除所有CKEditor实例

更新时间:2023-12-05 17:41:34

这将破坏页面上的所有CKEDITOR实例:

This will destroy all CKEDITOR instances on a page:

for(name in CKEDITOR.instances)
{
    CKEDITOR.instances[name].destroy(true);
}