我想使用Medium Editor addElements() 函数向我的页面添加一些 html。我真的不知道如何使用它。现在它只是添加一个可编辑的空白行......
我的代码:
var editor = new MediumEditor('.changeable');
elements = "<section id='"+new_id+"' class='changeable'><h1 class='title_section'>"+newTitle+"</h1><p>This is a new paragraph.</p></section>";
editor.addElements(".container_content",elements);
我的选择器是具有“container_content”类的元素。我想在其中添加 var "elements" 的 html。
谢谢。