tinymce.init({选择: '文本域'});没有在POST AJAX上工作

时间:2018-04-29 01:57:15

标签: javascript php

Before POST

这是我的代码。

//将数据发送到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'});

        }
    });

After Post

1 个答案:

答案 0 :(得分:0)

我实际上从div刷新中删除了文本区域,并清除了tinymce的内容 使用tinyMCE.activeEditor.setContent('');

        success: function(response) {
            $("#load_comment").load(" #load_comment");
            tinyMCE.activeEditor.setContent('');
        }

这是我的实际要求,但是在刷新POST时问题仍未解决。