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

ajsxfq5m  于 2023-04-20  发布在  jQuery
关注(0)|答案(3)|浏览(165)

我使用jquery AJAX 函数在一些输入字段和文本区域添加内容。只有文本区域使用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;
    });

下面是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...
...
juud5qan

juud5qan1#

你不需要jQuery来清空tinymce。通过id获取tinymce示例,并使用以下命令将内容设置为''(等于空)
//页面的第一个editor示例的id在tinymce.editors[0].id中找到

var tinymce_editor_id = 'my_tinymce_id'; 
tinymce.get(tinymce_editor_id).setContent('');
cu6pst1q

cu6pst1q2#

这对我很有效:

tinyMCE.activeEditor.setContent('');

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

bbuxkriu

bbuxkriu3#

试试下面的代码

if (typeof(tinyMCE) != 'undefined') {  
  $('#edit-comment').val('');  // Removes all paragraphs in the active editor   
}

相关问题