我的实现运行良好,但出于某种原因,IE认为它已经厌倦了玩得很好。我有一个TinyMCE的高级实现(jquery插件版本 - 有关详细信息,请参阅http://tinymce.moxiecode.com/examples/example_23.php)。
它仍适用于所有浏览器,但IE。在IE中它显示格式,字体系列和字体大小的下拉选项,但仅显示为文本..而不是通常看到的下拉菜单。工具栏上的所有其他按钮都缺失。 (我尝试过IE8和IE8兼容模式)
我收到一个javascript错误:语法错误第36行Char 1。 不幸的是,javascript正在动态加载,所以这对我没有帮助。
这是我的TinyMCE编辑器的实现代码:
$(function ()
{
$('#InputStuffHere').tinymce({
// General options
theme: "advanced",
plugins: "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,inlinepopups,preview,media,searchreplace,contextmenu,paste,fullscreen,noneditable,visualchars,nonbreaking,template",
// Theme options
theme_advanced_buttons1: "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,fontselect,fontsizeselect,|,hr,removeformat",
theme_advanced_buttons2: "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,image,|,forecolor,backcolor,|,spellchecker",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location: "top",
theme_advanced_toolbar_align: "left",
theme_advanced_statusbar_location: "bottom",
theme_advanced_resizing: true,
// Drop lists for link/image/media/template dialogs
template_external_list_url: "lists/template_list.js",
external_link_list_url: "lists/link_list.js",
external_image_list_url: "lists/image_list.js",
media_external_list_url: "lists/media_list.js",
//initialization callback
init_instance_callback: "TinyMCEReady",
add_form_submit_trigger : false
});
});
所以......有人见过这样的事情,或者对我有什么想法?非常感谢大家!
答案 0 :(得分:0)
你的tinymce是否适用于非jquery构建的tinymce?如果是,那么我建议你使用那个。在处理编辑器内容,打字等时,jquery tinymce版本需要4-6倍的时间......