我想将多个quill编辑器附加到带有追加的div中。
目标是在帖子类型为1或2时附加合适的模板,并在每个帖子的内容中附加每个帖子的内容
但我不知道如何生成多个quill编辑器,我试过这个:
$http.post("/getwallpost", reqGetPost).then(function(response) {
response.data.forEach(function(item) {
if(item.type_id == 1) {
var youp = "#" + item.id
wallcontent.append("<div id='" + item.id + "'></div>");
new Quill("#" + item.id, optionwall).setContents(JSON.parse(item.content));
} else if(item.type_id == 2) {
wallcontent.append('<div class="myArticles">This is article</div>');
}
});
});
&#13;
<div id="wallcontent">
</div>
&#13;
答案 0 :(得分:0)
没关系,它有效。
我在html id中使用了数字。我不得不使用像“#sqjdofjez”+ item.id这样的字符而不仅仅是“#5”