jquery – tinymce空白内容在ajax表单上提交?

前端之家收集整理的这篇文章主要介绍了jquery – tinymce空白内容在ajax表单上提交?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的表单使用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.

原文链接:https://www.f2er.com/jquery/176066.html

猜你在找的jQuery相关文章