1

我是 tinymce 编辑器的新手。根据该网站,他们的安装非常简单,而且效果也很好。但是当在 php.ini 中接收时。它得到不完整的代码

这是html代码:

<script type="text/javascript" src="http://localhost/tiny_mce/jquery.tinymce.js"></script>

<script type="text/javascript">
$().ready(function() {
    $('textarea').tinymce({
        // Location of TinyMCE script
        script_url : 'http://localhost/tiny_mce/tiny_mce.js',

        // General options
        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_statusbar_location : "bottom",
        theme_advanced_resizing : true,

        // Example content CSS (should be your site CSS)
        content_css : "css/content.css",

        // 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",

        // Replace values for the template plugin
        template_replace_values : {
            username : "Some User",
            staffid : "991234"
        }
    });
   });
</script>

文本区域是

<textarea id="f_page_body" name="f_page_body" class="tinymice"></textarea>

php代码是

$body = $_POST["f_page_body"];


        echo(stripslashes($body));

在编辑器中它看起来不错但是在 php 中显示时它只是得到完整的代码,如下所示

 <p><span  xx-large; font-family: impact,chicago; color: #99cc00;">I am testing it</span></p>
4

1 回答 1

0

显示 TinyMCE 编辑器的 span的style="font-size:部分在哪里?看起来它以某种方式被切断了。

您的 HTML:

<p><span  xx-large; font-family: impact,chicago; color: #99cc00;">I am testing it</span></p>

应该是什么:

<p><span style="font-size: xx-large; font-family: impact,chicago; color: #99cc00;">I am testing it</span></p>
于 2012-07-01T23:08:01.480 回答