HTML代码:
原始内容
JavaScript代码:
// 获取div元素 var myDiv = document.getElementById("myDiv");
// 向div中添加内容 function addContent() { var newContent = document.createElement("p"); var text = document.createTextNode("新的内容"); newContent.appendChild(text); myDiv.appendChild(newContent); }
// 从div中删除内容 function removeContent() { var currentContent = myDiv.querySelector("p:last-child"); myDiv.removeChild(currentContent); }
// 给按钮绑定事件 var addButton = document.getElementById("addButton"); addButton.addEventListener("click", addContent);
var removeButton = document.getElementById("removeButton"); removeButton.addEventListener("click", removeContent);
// CSS样式 #myDiv { padding: 20px; background-color: #f2f2f2; }
下一篇:不重新加载整个页面更新现有列表