Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在表单中使用 tinymce 编辑器。它工作正常。但是当我尝试使用 jquery post 方法发布表单时。tinymce textarea 是空白的。
$.post("/posts/preview/", $("#PostForm").serialize(), function(data){ $('#myframe').html(data); });
所有字段都可用。除了空白的tinymce textarea。我很感激任何帮助。
message 是您给对象 tinymce 的名称
tinyMCE.get('mensage').getContent(); /* get vaue tine MCE */ tinymce.get('mensage').setContent(''); /* populate fields and clear fields */