操作系统: windows操作系统
浏览器版本: 所有浏览器
KindEditor版本: 4.1.7
BUG再现步骤:
1.和jquery ui配合使用
var editor;
function recomment() {
var videoBox = $("<div id=\"videoBox\" style=\"width:100%;height:100%;\" ><textarea id='c_cmt' name='c_cmt' style=\"width:99.5%;height:200px;\"></textarea></div>");
videoBox.dialog({
title: '回复评论',
resizable: false,
width: 400,
height: 300,
modal: true,
buttons: {
"确定": function () {
。。。。。。
$(this).dialog("close");
},
"取消": function () {
$(this).dialog("close");
}
}
});
editor = KindEditor.create('#c_cmt', {
resizeType: 0, allowPreviewEmoticons: false, allowImageUpload: false,
items: ['fontname', 'fontsize', '|', 'forecolor', 'bold', 'italic', 'underline',
'removeformat', '|', 'emoticons', 'link', 'unlink', 'source']
});
}
2. 第一次执行该函数成功加载 点确定或取消 在执行改函数 编辑器不加载
期望结果: