我在使用jQuery的模态弹出窗口中使用自定义CKEditor(版本:4.7.8)插件。 它在chrome和FF中运行良好,但在IE 10中,当我要选择字体颜色或背面颜色时,对话框会闪烁。它不会保持开放以选择颜色。
这是报告的错误,已修复,但似乎仍然没有。
是否有人面临同样的问题。对此有何解决方案?
答案 0 :(得分:1)
我找到了答案。在页面中添加了以下代码。
$.widget("ui.dialog", $.ui.dialog, {
_allowInteraction: function (event) {
if (this._super(event)) {
return true;
}
// address interaction issues with general iframes with the dialog
if (event.target.ownerDocument != this.document[0]) {
return true;
}
// address interaction issues with dialog window
if ($(event.target).closest(".cke_dialog").length) {
return true;
}
// address interaction issues with iframe based drop downs in IE
if ($(event.target).closest(".cke").length) {
return true;
}
}
});
现在正在工作!!! 1