bootstrap-wysiwyg设置内容

时间:2017-01-01 14:27:44

标签: jquery bootstrap-wysiwyg

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

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

似乎没有人接受

2 个答案:

答案 0 :(得分:1)

enter image description here试试这个Get-Content

wysiwyg编辑器将显示如下所示的内容

"我是粗体文字"

答案 1 :(得分:1)

经过艰苦的努力,我找到了方法

var editorObj = $("#description").data('wysihtml5');
var editor = editorObj.editor;
editor.setValue(data.description);