标签: jquery bootstrap-wysiwyg
如何使用jQuery动态地将内容设置为bootstrap-wysiwyg编辑器。 我试过了
$('.editor').html() and $('.editor').val()
似乎没有人接受
答案 0 :(得分:1)
试试这个Get-Content
Get-Content
wysiwyg编辑器将显示如下所示的内容
"我是粗体文字"
答案 1 :(得分:1)
经过艰苦的努力,我找到了方法
var editorObj = $("#description").data('wysihtml5'); var editor = editorObj.editor; editor.setValue(data.description);