0
我正在嘗試使用ckeditor發送文本值。但是我沒有從ckeditor那裏得到任何價值。如果我使用HTML,那麼我得到的價值。我不知道我做錯了什麼。請有人幫助我。 這裏是我的代碼:無法使用ckeditor傳遞文本值
<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;
};
Thanks @MahanGM it's working .. –