【发布时间】:2012-01-09 16:06:40
【问题描述】:
我正在处理现有项目。我必须检测 tinyMCE focusout/blur 事件才能通过 AJAX 自动保存。我发现以下现有的工作代码:
// reinit tinymce
$($("#chapterBill div:.module-container")[indexAfter]).find('textarea').each(function(i){
editorId = $(this).attr('id');
tinymce.EditorManager.execCommand('mceAddControl',true, editorId);
});
谁能告诉我如何捕获 tinyMCE textarea focusout/blur 事件?
谢谢
【问题讨论】:
标签: javascript jquery tinymce textarea focusout