Textarea value change when summernote div is changed

前端 未结 6 1558
独厮守ぢ
独厮守ぢ 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:28

    First impressions are everything.

    Features:
    $(document).ready(function() { $('.summernote').summernote({ height: 300, onKeyup: function(e) { $("#product_desc_l").html($(this).code()); } }); });

    This worked for me

提交回复
热议问题