Jquery TinyMCE预览在IE 8和IE 7中不起作用

Jquery TinyMCE预览在IE 8和IE 7中不起作用,jquery,tinymce,Jquery,Tinymce,我正在使用一个web应用程序,我在后端使用了最新版本的tinyMCE作为编辑器。。 除了IE上的模板预览外,一切看起来都很好 有没有人遇到过这个问题或对此有解决办法 提前谢谢 这是我的密码 tinyMCE.init({ // General options mode : "textareas", theme : "advanced", plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advl

我正在使用一个web应用程序,我在后端使用了最新版本的tinyMCE作为编辑器。。 除了IE上的模板预览外,一切看起来都很好

有没有人遇到过这个问题或对此有解决办法

提前谢谢

这是我的密码

   tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,advlist",

// Theme options
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_resizing : true,

// Skin options
skin : "o2k7",
skin_variant : "silver",

// Drop lists for link/image/media/template dialogs
template_external_list_url : "../../js/tiny_mce/plugins/template/template_list_2.php",
external_link_list_url : "js/link_list.js",
external_image_list_url : "js/image_list.js",
media_external_list_url : "js/media_list.js",

editor_selector : "htmlEditor",
convert_urls : false,
width : "100%",
height: "500px",

init_instance_callback : function() { 
    $('.mceToolbar a').each(function(item){
        $(this).attr('tabindex', -1);
    }); 
}
}))

将您的代码添加到此处。
如果代码在FF&chrome中运行良好,我想您可能会留下尾随逗号

您的意思是前端?我打赌这里提供的答案是这个问题的最佳答案。@vision谢谢你的回答。。但是你建议的论坛对我来说没有意义。。谢谢,我想我会花更多的时间来研究我的意思是没有足够的信息来解决这个问题。通过我所有的搜索,IE中的预览应该不会有任何问题。