TinyMCE not sending value

前端 未结 3 2166
清酒与你
清酒与你 2020-12-06 17:44

Hi All
It\'s the first time I\'ve used Tiny Mce and I have a problem. Please Help

The editor works fine in editing but when I click submit nothing is sent from t

3条回答
  •  失恋的感觉
    2020-12-06 18:26

    It is necessary to update the textareas content with the content of the editors iframe (tinymce uses an editable iframe like most rtes). In order to achieve this you need to call tinymce.get('elm1').save(); before you submit.

    You can also grab the editors content using tinymce.get('elm1').getContent(); and sent this.t

提交回复
热议问题