0

问题视频:http ://www.youtube.com/watch?v=Y6RZHMQueDc&feature=youtu.be

当我按下提交表单按钮时,我调用 onsubmit 方法,该方法使用 ajax 发送数据(异步 false)。

在 ajax 调用返回时,它会回显 tinymce 文本区域的内容。如果我按一次保存,则没有返回任何内容(但调用成功并返回我的测试回声),我第二次按保存,然后 tinymce textarea 中有一些内容供 ajax 返回。

是否有一个我错过了某个地方的设置,其中 textarea 必须在每次击键时更新或类似的东西?或者在保存时,textarea 被同步推送到 textarea 中,然后允许保存完成其工作而不是异步?

有任何想法吗?

以下是我目前使用的设置:

tinyMCE.init({
        // General options
        mode : "textareas",
        theme : "advanced",
        plugins : "jbimages,autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist",
        language : "en",

        // Theme options
        theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
        theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
        theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
        theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft,|,jbimages",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_resizing : true,
        theme_advanced_resize_horizontal : false,

        // This is required for the image paths to display properly
        relative_urls : false,

        // Style formats (OPTIONAL)
        style_formats : [
            {title : 'Bold text', inline : 'b'},
            {title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
            {title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
            {title : 'Example 1', inline : 'span', classes : 'example1'},
            {title : 'Example 2', inline : 'span', classes : 'example2'},
            {title : 'Table styles'},
            {title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}
        ]

    });
4

1 回答 1

1

在提交之前调用 tinyMCE.triggerSave();

于 2012-06-19T21:56:51.977 回答