我的表单使用TinyMCE来格式化
HTML,但是无论如何,第一次提交时内容总是空白的.这是我提交的功能:
$('#commentForm').click('submit',function () { tinyMCE.triggerSave(true,true); $(this).ajaxSubmit({ success: function (result) { if (result.success) { $('#commentForm')[0].reset(); var newComment = { comment: result.comment }; // Append the new comment to the div $('#commentTemplate').tmpl(result.comment).appendTo('#commentsTemplate'); } $('#commentFormStatus').text(result.message); } }); return false; });
我添加了tinyMCE.triggerSave(true,true);但它似乎不起作用.任何建议?
谢谢.
解决方法
尝试更换
tinyMCE.triggerSave(true,true);
通过
tinyMCE.get("id").save();
其中“id”是您的文本区域的ID.