解决Bootstrap模态窗口Modal中使用Kindeditor或UEditor编辑器第二次无法加载的问题

来源:互联网 发布:海关淘宝临时工 编辑:程序博客网 时间:2024/05/16 06:44

Kindeditor解决方法:

$('#myModal').on('hidden.bs.modal', function () {    // 关闭Dialog前移除编辑器    KindEditor.remove('#content');});

UEditor解决方法:

$('#adminModalLg').on('hidden.bs.modal', function () {    // 关闭Dialog前移除编辑器    UM.getEditor('container').destroy();});
0 0
原创粉丝点击