我正在使用TinyMCE 3.5和jQuery插件。
我在没有指定模式的情况下使用tinyMCE.init()方法,然后将编辑器附加到我的元素:
tinyMCE.execCommand('mceToggleEditor',false,jQuery(this).attr('id'));
编辑器在Internet Explorer 8中成功加载,但抛出了#34; Object required"错误
第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();
});
}
}
}
答案 0 :(得分:1)
forced_root_block
。对于IE,如果在execCommand加载事件后编辑器不能立即可用,则需要poll文档。