如何使用jquery在ajax操作后清空TINYMCE内容

shi*_*hin 9 javascript jquery tinymce

我使用jquery ajax函数在一些输入字段和textarea中添加内容.只有textare使用TINYMCE.

然而,在ajax之后,TINYMCE中的文本不会刷新并保持不变.

如何使用jquery清空TINYMCE中的内容?

我目前的代码如下.

//on submit event
    $("#specformentry").submit(function(event){
        event.preventDefault();
        if(checkForm()){
          //  var href = $(this).attr("href");
            submitinput.attr({ disabled:true, value:"Sending..." });
            //$("#send").blur();
            //send the post to shoutbox.php
            $.ajax({
                type: "POST",
                url: "../../Ajaxinsertspec",
                data: $('#specformentry').serialize(),
                complete: function(data){
                     update_entry();
                     specdesc.val('');
                     datecreated.val('');
                     detailstext.val('');
               // this code is supposed to empty the INYMCE content, but it does not

                    //reactivate the send button
                    submitinput.attr({ disabled:false, value:"Enter Spec" });
                }
             });
        }
        else alert("Please fill all fields!");
        //we prevent the refresh of the page after submitting the form
        return false;
    });
Run Code Online (Sandbox Code Playgroud)

以下是HTML的一部分

<div id="enterlabel"><label for="spec_details">Click me to enter Spec Details</label></div>
<div style="display: block;" id="textarea">
<textarea style="display: none;" name="spec_details" cols="90" rows="12" id="detailstext"></textarea>
<span class="mceEditor defaultSkin" id="detailstext_parent">
    <table style="width: 100px; height: 100px;" class="mceLayout" id="detailstext_tbl" cellpadding="0" cellspacing="0">
        <tbody><tr class="mceFirst">
          <td class="mceToolbar mceLeft mceFirst mceLast"><a href="#" accesskey="q" title="Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to...
...
Run Code Online (Sandbox Code Playgroud)

Tha*_*ama 15

你不需要jQuery来清空tinymce.通过id获取tinymce实例并使用将内容设置为''(等于空)

//该页面的第一个编辑实例的id可以在tinymce.editors [0] .id中找到

var tinymce_editor_id = 'my_tinymce_id'; 
tinymce.get(tinymce_editor_id).setContent('');
Run Code Online (Sandbox Code Playgroud)


Joh*_*nyQ 11

这对我有用:

tinyMCE.activeEditor.setContent('');
Run Code Online (Sandbox Code Playgroud)

特别是如果它是您页面中唯一存在的编辑器.