jQuery Summernote - Get text back into editor

前端 未结 6 1006
鱼传尺愫
鱼传尺愫 2021-01-01 12:39

I got problems getting text back into the summernote editor.

I already tried (but did not work):

$(\"#EDITsummernote\").innerHtml = \'test\';
         


        
6条回答
  •  难免孤独
    2021-01-01 13:24

    To set text in the summernote editor:

    $('#summernote').summernote('editor.insertText', 'hello world');
    

提交回复
热议问题