2013-01-25 117 views
0

我在TinyMCE中遇到了問題,在我的內容管理器系統中,我收錄了幾個TinyMCE字段。TinyMCE strip HTML

這是由點擊函數中的點擊函數觸發的,它調用函數showNewTextEdit。

問題是,在Internet Explorer 8中,所有HTML標籤都被剝離出文本。我在其他瀏覽器(Firefox和Chrome)中測試過它。它在那些方面非常完美。

在這裏我用我的功能來創建tinymce。

function showNewTextEdit(editdiv, value, existing) { 
    var textedit = $("<textarea />").addClass("tinymce value").html(value); 

    $(editdiv).append(textedit); 


    $('.tinymce').tinymce({ 
     script_url : '/js/tinymce/jscripts/tiny_mce/tiny_mce.js', 

     <?php // General options ?> 
     language : 'nl', 
     theme : "advanced", 
     plugins : "safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,searchreplace,print,contextmenu,paste,directionality,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager", 

     theme_advanced_buttons1 : "bold,italic,underline,forecolor,|,bullist,numlist,hr,|,undo,redo", 
     theme_advanced_buttons2 : "copy,paste,cut,|,link,unlink,|,search, removeformat", 
     theme_advanced_buttons3 : "visualaid,tablecontrols", 
     theme_advanced_buttons3 : "", 

     theme_advanced_toolbar_location : "top", 
     theme_advanced_toolbar_align : "left", 
     theme_advanced_resizing : true, 

     content_css : "/css/tinyMceWMS.css", 

     theme_advanced_blockformats : "h1,h2,h3,h4,h5,h6", 
     forced_root_block : false, 
     force_br_newlines : true, 
     force_p_newlines : false, 
     paste_create_paragraphs : false, 
     paste_create_linebreaks : false, 
     paste_use_dialog : false, 
     paste_auto_cleanup_on_paste : true, 
     paste_convert_middot_lists : false, 
     paste_unindented_list_class : "unindentedList", 
     paste_convert_headers_to_strong : true, 
     theme_advanced_resize_horizontal: false, 
     convert_urls : false, 
     width : editbreedte, 
     height: 400 
    }); 
} 
+0

你可以創建一個tinymce小提琴嗎? (http://fiddle.tinymce.com) – Thariama

回答