php - tinymce 无法在 php 中运行?

标签 php javascript tinymce

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

这是 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>

最佳答案

显示 TinyMCE 编辑器的范围的 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>

关于php - tinymce 无法在 php 中运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11286294/

相关文章:

php - 来自多个 MySQL 表的单个 HTML 表

yii2 中的 JavaScript 没有响应

javascript - 将 TinyMCE 与 Ionic 结合使用

jquery - 在 TinyMCE 插件中使用 jQuery

php - 在数组中查找具有相似条件的

php - 我如何在一个 MySQL Select 查询中执行此操作,我想丢失 foreach 循环和第二个 select 查询?

javascript - knockout 'attr' 是否总是假设输入需要转义,是否可以将其关闭?

javascript - 如何让 <div> 中的两个元素调用不同的函数?

javascript - javascript 和 html 出现问题

django - 为什么 Django admin 中的 TinyMCE 会输出 HTML 标签?