这是我的代码。
//将数据发送到php文件的AJAX代码。
$.ajax({
type: "POST",
url: "insert_comment.php",
data: {p_id:p_id,full_name:full_name,email:email,content:content,img:img},
dataType: "JSON",
success: function(response) {
$("#load_comment").load(" #load_comment");
//put the initial init function here instead
tinymce.init({selector:'textarea'});
}
});
答案 0 :(得分:0)
我实际上从div刷新中删除了文本区域,并清除了tinymce的内容 使用tinyMCE.activeEditor.setContent('');
success: function(response) {
$("#load_comment").load(" #load_comment");
tinyMCE.activeEditor.setContent('');
}
这是我的实际要求,但是在刷新POST时问题仍未解决。