<和引用更改为tinyMCE中的HTML实体

时间:2012-04-14 10:22:56

标签: tinymce

在DB中,它是以下内容。

<img src="../../../../assets/images/frontpage/big_tree.jpg" alt="" 
width="516" height="200" />

但是当它在tinyMCE中时,所有&lt;,&gt;并“改为像这样的html实体。 因此它不会显示在FF中。

&lt;img src=&quot;../../../../assets/images/frontpage/big_tree.jpg&quot; 
alt=&quot;&quot; width=&quot;516&quot; height=&quot;200&quot; /&gt;

我该如何避免这个问题?

我有以下tinyMCE init

tinyMCE.init({
        mode : "textareas",
        /* // if I want to add to a specific area then use this
        mode : "specific_textareas",
        editor_selector : "mceEditor", // add class="mceEditor" where you want to add tinyMCE
        */

        theme : "advanced",
        plugins : "advimage,advlink,media,contextmenu",
        //theme_advanced_buttons1_add_before : "newdocument,separator",
        theme_advanced_buttons1_add : "fontselect,fontsizeselect",
        theme_advanced_buttons2_add : "separator,forecolor,backcolor,liststyle",
        theme_advanced_buttons2_add_before: "cut,copy,separator,",
        theme_advanced_buttons3_add_before : "",
        theme_advanced_buttons3_add : "media",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        //extended_valid_elements : "hr[class|width|size|noshade]",
        extended_valid_elements : "span[class|align|style]",
        file_browser_callback : "ajaxfilemanager",
        paste_use_dialog : false,
        theme_advanced_resizing : true,
        theme_advanced_resize_horizontal : true,
        apply_source_formatting : true,
        force_br_newlines : true,
        force_p_newlines : false,   
        relative_urls : true
    });

提前致谢。

3 个答案:

答案 0 :(得分:2)

在php中,您可以使用html_entity_decode

答案 1 :(得分:2)

您需要按原样保存数据库中的tinymce内容(“&lt;”和“&gt;”作为真实字符),或者您需要在将数据库内容呈现到网页之前对其进行实体解码。根据您的脚本语言(perl,php,python,...),有一些特殊功能可以执行此操作。

答案 2 :(得分:0)

我有同样的问题 我通过添加

来纠正它
        $_POST = array_map( 'stripslashes', $_POST );