4

我正在使用带有 jQ​​uery 插件的 TinyMCE 3.5。

我正在使用未指定模式的 tinyMCE.init() 方法,然后将编辑器附加到我的元素:

tinyMCE.execCommand('mceToggleEditor',false,jQuery(this).attr('id'));

编辑器在 Internet Explorer 8 中成功加载,但抛出“需要对象”错误

错误从第 22 行的 ForceBlocks.js 抛出,如下所示:

21 while (node != rootNode) {
22   if (blockElements[node.nodeName])
23     return;
24 
25   node = node.parentNode;
26 }

在 firefox、chrome 或 safari 中不会出现错误。

tinyMCE.execCommand 方法的上下文是:

ADMIN = {
  triggerTextArea: function (event) {

    currentTarget = event.currentTarget;

    if(jQuery(currentTarget).hasClass('ajaxform'))
    {
      textareas = jQuery(this).find('.question-text-editor textarea');
      addTextArea = true;
    } else {
      textareas = jQuery(this).closest('.question-wrapper').find('.question-text-editor textarea');    
      addTextArea = (jQuery(this).is(':checked') && jQuery(this).val() == 'html');
    }


    if(addTextArea == true)
    {
      textareas.each(function() {
          console.log(jQuery(this).attr('id'));
          tinyMCE.execCommand('mceToggleEditor',false,jQuery(this).attr('id'));

        });



    } else {
      textareas.each(function() {
        editorId = jQuery(this).attr('id');
        tinymce.get(editorId).hide(); 
      });

    }
  }
}

  if(addTextArea == true)
  {
    textareas.each(function() {
        console.log(jQuery(this).attr('id'));
        tinyMCE.execCommand('mceToggleEditor',false,jQuery(this).attr('id'));

      });



  } else {
    textareas.each(function() {
      editorId = jQuery(this).attr('id');
      tinymce.get(editorId).hide(); 
    });

  }
}
}
4

1 回答 1

1

forced_root_block包含在相关问题中。对于 IE,如果在 execCommand 加载事件之后编辑器不立即可用,则需要轮询文档。

于 2012-10-17T19:54:36.680 回答