我需要构建JavaScript代码来更新Html节元素内容,但不删除现有内容,只是添加它,有什么建议吗?
我搜索了一个属性"contenteditable"可以设置为"true";,以便您可以在节中编辑,我使用下面的代码
let section = document.querySelector('section');
for (let s in section){ s.set attribute =("contenteditable","true")}
您将能够使用appendChild
添加一些新内容,如:
const section = document.querySelector('section');
section.appendChild(document.createElement("DIV"));