我正在使用带有 jQuery 插件的 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();
});
}
}
}