Textarea value change when summernote div is changed

前端 未结 6 1556
独厮守ぢ
独厮守ぢ 2021-02-05 09:37

I have setup a div for the summernote to alter text pulled from a database.

6条回答
  •  走了就别回头了
    2021-02-05 10:17

    Using the summernote API

    I came up with this solution:

    $(document).ready(function() {
        $('#summernote').summernote({
          onKeyup: function(e) {
            $("#lawsContent").val($("#summernote").code());
          },
          height: 300,
        });
    });
    

提交回复
热议问题