2009-11-15 114 views
0

TinyMCE初始化看起来是这样的:TinyMCE的在Internet Explorer不会加载

var tinymce_advanced_options = { 
     mode : "textareas", 
     theme : "advanced", 
     editor_deselector : "mceNoEditor", 
     theme_advanced_resizing_min_width : 500, 
     theme_advanced_resizing_max_width : 800, 
     plugins : "autoresize,paste,preview,safari,table,contextmenu,paste,imagepopup,emotions", 

     width: "800", 
     button_title_map: false, 
     apply_source_formatting: true, 
     theme_advanced_toolbar_align: "left", 
     theme_advanced_buttons1: "formatselect,outdent,indent,seperator,undo,redo,separator,emotions", 
     theme_advanced_buttons2: "justifyleft,justifycenter,justifyright,separator,bold,italic,separator,bullist,numlist,link,separator,imagepopup,table,separator", 
     theme_advanced_buttons3: "preview", 
     plugin_preview_width : "500", 
     plugin_preview_height : "600", 

     theme_advanced_toolbar_location: "bottom", 
     theme_advanced_resizing : true, 
     theme_advanced_blockformats : "p,h2,h3,blockquote" 
    }; 

这在Firefox加载罚款,而在Internet Explorer 7,微调都在旋转,永不负荷。

任何线索赞赏。

+0

也许是一个明显的建议,但您可能需要刷新IE的缓存以确保它不会尝试加载borked配置。 – 2009-11-15 10:19:53

+0

在开发者控制台[F12]寻找提示。 – naXa 2016-02-08 15:04:42

回答

2

尝试注释掉从顶部到第一部分的所有行,以获得在IE7中工作的内容。然后逐行取消注释以查看其配置的任何部分。

+0

有帮助。谢谢。 删除所有插件,它的工作。 任何想法为什么添加“情绪”插件会导致IE7中的这个问题? – user16455 2009-11-18 04:18:36