2012-06-19 59 views
0

VIDEO问题:http://www.youtube.com/watch?v=Y6RZHMQueDc&feature=youtu.beTinyMCE的节能问题 - PHP

当我按下提交表单按钮,我打电话的onsubmit发送数据了与AJAX(异步错误)的方法。

在返回ajax调用时,它回响了tinymce textarea的内容。如果我按保存一次,没有任何返回(但通话成功,并返回我的测试回声),我再按一次保存,然后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'} 
     ] 

    }); 

回答

1

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

+0

就是这样。我到底是怎么想那个哈哈哈的!好男人!..这是修辞btw ..这是因为我是一个noob。我已经知道了答案^ _^ – Jimmyt1988

+0

@JamesT,没问题 –