3

如何使用 jQuery 将内容动态设置为 bootstrap-wysiwyg 编辑器。我试过了

$('.editor').html() and $('.editor').val() 

似乎没有一个人接受

4

2 回答 2

2

经过很多努力,我找到了路

var editorObj = $("#description").data('wysihtml5');
var editor = editorObj.editor;
editor.setValue(data.description);
于 2017-01-01T15:02:58.743 回答
1

在此处输入图像描述尝试这个,$("#editor").html("I am a <b>bold</b> text.");

所见即所得编辑器将显示为预期的内容,如下所示

“我是粗体字”

于 2017-01-01T14:41:05.137 回答