0

我正在尝试使用 ckeditor 发送文本值。但我没有从 ckeditor 获得任何价值。如果我使用 HTML,那么我会得到价值。我不知道我做错了什么。请有人帮助我。这是我的代码:

<textarea class="ckeditor" id="text" name="text"><?php echo $article['text'];?></textarea>

<input id="articleSUBMIT" type="submit" value="submit" onClick="return articlePOST();"/>

这是我的ajax代码:

function articlePOST(){
    //Is the form valid?
    if($("#article").valid()) {
        var srt = $("#article").serialize();
         $.ajax({
             type: "POST", url: "ajax/article.php", data: srt,
             beforeSend: function(){$("#loading").show("fast");}, 
             complete: function(){$("#loading").hide("fast");},
             success: function(html){$("#article").html(html);$('#uploader-container').html('');}  
          });  
     }  
    return false;
};
4

1 回答 1

0

使用它来保存页面中所有编辑器实例的触发器:

function saveEditorTrigger()
{
  for ( instance in CKEDITOR.instances ) CKEDITOR.instances[instance].updateElement();
}

在提交之前调用此函数。像这样:

function articlePOST(){
// Update editor
saveEditorTrigger();

//Is the form valid?
if($("#article").valid()) {
    var srt = $("#article").serialize();
     $.ajax({
         type: "POST", url: "ajax/article.php", data: srt,
         beforeSend: function(){$("#loading").show("fast");}, 
         complete: function(){$("#loading").hide("fast");},
         success: function(html){$("#article").html(html);$('#uploader-container').html('');}  
      });  
 }  
return false;
};
于 2013-07-08T21:39:05.113 回答