0

下面是我如何在 index.php 中创建 CKeditor(我将它与 CKfinder 一起使用):

< textarea id="text" name="text" >

< /textarea >

       <?php
        include_once 'ckeditor/ckeditor.php';
        require_once 'ckfinder/ckfinder.php' ;
        $ckeditor = new CKEditor();
        $ckeditor->basePath  = 'ckeditor/' ;
        CKFinder::SetupCKEditor( $ckeditor, 'ckfinder/' ) ;
        $config['height'] = '300';
        $ckeditor->editor('text', $initialValue, $config);
        ?>

并通过此按钮将编辑器的值提交给下面的 ajax 函数:

< a onclick="submit();" > Send < /a > == >这完美地调用了ajax函数)

 function submit()
    {
    var textbox= CKEDITOR.instances.text.getData();
    $.ajax({
            type: "POST",
            url: "index2.php",
            data: "textbox="+textbox,
            error: function(){

              alert('Error while loading');
          },
                success: function(data){
                $('#content').html(data);
      }
      });
}

在 index2.php 我试图将值作为

   $textbox= $_POST['textbox'];

它没有用。我也试图通过

   $textbox= stripslashes($_POST['textbox']) ;
   $textbox=mysql_real_escape_string($textbox);

它也没有工作。我不知道如何处理这个问题。任何想法将不胜感激

4

1 回答 1

2

我在使用 CKEditor 时遇到问题,并在这些值包含特殊字符时发布它的值。在我的情况下,它发生在 a&nbsp;在编辑器的内容中时。它“杀死”了 url,因为?data=blabla&nbsp;它是一个格式错误的 url。我使用 encodeURIComponent() 来确保不会发生这样的事情。

https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/encodeURIComponent

不确定这是否正是您的问题(现在;),但您可能也想寻找这个。

于 2012-09-13T08:12:55.683 回答