简体   繁体   中英

bootstrap-wysiwyg Set Content

How to set content to bootstrap-wysiwyg editor dynamically with jQuery. I tried

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

Seems to like none of them are accepting

After struggling lot I found the way

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

在此输入图像描述 Try this, $("#editor").html("I am a <b>bold</b> text.");

wysiwyg editor will show as content as expected as below

"I am a bold text"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM