我正在使用 tinymce 编辑器来提供富文本格式,并且我想提供自动保存选项。我设法编写了一个完全可以做到这一点的脚本,但是有一个问题。如果窗口不是当前选项卡,我不想调用该保存函数,这样就不会进行不必要的保存调用。
为了解决这个问题,我使用了,$(window).focus()
但这似乎不起作用,因为当 tinyMCE 编辑器处于焦点时(意味着我正在输入它),窗口会以某种方式失去焦点(很可能是因为 tinyMCE 编辑器使用 iFrame)并且作为结果我的定期更新功能没有被调用。
如果有处理程序,我会很容易地解决这个问题。onFocus
对于编辑,但似乎没有。有人可以建议我如何克服这个问题吗?我的代码如下
/* Function to be called for saving the blog */
function saveBlog(){
var ed = tinymce.activeEditor;
/* Ajax call will be done only when some changes has been made in the editor*/
if (ed.isDirty())
{
ed.save();
var link = $(this).attr("href");
var cur_elem = $(this);
cur_elem.html('saving...');
cur_elem.addClass('unclickable');
$.ajax({
type: "POST",
url: link,
data: $("#blog_form :input[name!='csrfmiddlewaretoken']").serialize(),
dataType: 'json',
success: function(){
cur_elem.html('Save');
cur_elem.removeClass('unclickable');
}
});
}
};
var interval_id;
/* Timer resumes when the window comes back in focus */
$(window).focus(function() {
if (!interval_id)
interval_id = setInterval(saveBlog, 5000);
});
/* Whenever window goes out of focus the timer is cleared */
$(window).blur(function() {
clearInterval(interval_id);
interval_id = 0;
});
/* Starts the auto saving for the first time */
$(document).ready(function(){
interval_id = setInterval(saveBlog, 5000);
});
任何人都可以帮助解决这个问题,我只需要知道 tinyMCE 编辑器实例何时处于焦点,以便我可以恢复自动保存定期功能。除了$(window).focus