标签: javascript html ckeditor
正如标题所说的非常直截了当。
我只需要知道如何将div中的所有内容转移到CKEditor而不转移div本身。
它的版本是4.1 btw。
答案 0 :(得分:2)
如果你可以使用jQuery,你可以只读取内容并将其设置为。
var html = jQuery('#YourDivSelector').html(); CKEDITOR.instances.editor1.setData(html);