jQuery-复制粘贴文本到summernote

时间:2019-06-30 14:33:14

标签: php summernote

我有答复列表

当用户单击“ quoteMsg”按钮时,我正在运行jquery脚本,该脚本将当前消息与相关回复中的消息一起加入。

问题是当我发布表格时,报价内容没有发布

$(document).ready(function(){
    $('.quoteMsg').click(function()  {

        var replyMsg = $(this).closest('.replyBox').find('.replyMsg').html();
        var currentMsg = $(".note-editable").html(); 

        $(".note-editable").html($.trim(currentMsg + "\n" + "<quote><br /><br />" + replyMsg + "</quote><br />")); // for textarea editor (summernote)

    });
}); 

<textarea id="editor-area" name="msgText" class="form-control" rows="9"><?PHP echo nl2br($_POST['msgText']) ?></textarea>

0 个答案:

没有答案