我有一个window.blur
函数,如下所示
$(window).blur(function(){
_doing_something_wrong.resume();
$('#_put_an_eye_on_users_activity_modal').modal({show : true, keyboard: false,backdrop: 'static'});
});
和TinyMCE
init
如下
tinymce.init({
selector:'._editor_statement_question',
setup: function (_editor) {
_editor.on("focus", function () {
$(this.contentAreaContainer.parentElement).find("div.mce-toolbar-grp").show();
});
}
});
但是每当我尝试在editor
(_editor.on('focus',function(){}
)中输入某些内容时window.blur
函数都会触发,我的意思是modal
出现了,
我怎样才能避免这种情况,仅用于编辑重点,
我尝试了unbinding
模糊功能,但需要一个简单而干净的解决方案,请提供一些提示
TinyMCE vesrion - 4.x
感谢
答案 0 :(得分:1)
我想通了,因为TinyMCE
Iframe
,所以我管理了我的blur
功能如下
$(window).blur(function(){
if($('iframe').is(':focus')) {
//do nothing
}
else {
_doing_something_wrong.resume();
$('#_put_an_eye_on_users_activity_modal').modal({show : true, keyboard: false,backdrop: 'static'});
}
})