标签:dde 解决方法 remove dia hid log containe rem ueditor
解决:在关闭模态框时移除富文本编辑器
Kindeditor解决方法:
$(‘#myModal‘).on(‘hidden.bs.modal‘, function () {
// 关闭Dialog前移除编辑器
KindEditor.remove(‘#content‘);
});
UEditor解决方法:
$(‘#adminModalLg‘).on(‘hidden.bs.modal‘, function () {
// 关闭Dialog前移除编辑器
UM.getEditor(‘container‘).destroy();
});
标签:dde 解决方法 remove dia hid log containe rem ueditor
原文地址:https://www.cnblogs.com/jffun-blog/p/10327403.html