Javascript IE无法显示tinymce图标

Javascript IE无法显示tinymce图标,javascript,internet-explorer,tinymce,Javascript,Internet Explorer,Tinymce,我的代码无法显示tinymce图标…下面是我的代码 tinymceSettings: { theme : "advanced", tinymcePlugins: "style,paste,directionality,advimage,advlink", theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justify

我的代码无法显示tinymce图标…下面是我的代码

tinymceSettings: {
        theme : "advanced",
        tinymcePlugins: "style,paste,directionality,advimage,advlink",
        theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,|,fontselect,fontsizeselect,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,forecolor,backcolor",
    theme_advanced_buttons2 : "",
        theme_advanced_buttons3 : "",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left"
        //theme_advanced_statusbar_location : "bottom"
    extended_valid_elements :"a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],font[face|size|color|style]"
}
请帮帮我

欢迎来到SO

问题在于按钮界面的定义。您正在使用
|
来指示应该使用
分隔符时使用的分隔符

将行更改为:

theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,separator,fontselect,fontsizeselect,separator,bullist,numlist,separator,outdent,indent,separator,undo,redo,separator,forecolor,backcolor",

如果您愿意,可以在此处浏览主题\高级\按钮1的文档

欢迎来到SO。请添加更多信息。你能展示一下它的屏幕截图吗?它在FF中工作吗?可能是图标没有上传,或者可能放错了位置?