http://www.w3school.com.cn/xmldom/dom_document.asp
document.createElement("div"); 创建一个元素
document.body.appendChild(div); 追加元素
createAttribute("") 创建属性
createTextNode("click") 添加文本节点
lastChild 最后一个子节点
时间: 2024-11-08 07:16:57
http://www.w3school.com.cn/xmldom/dom_document.asp
document.createElement("div"); 创建一个元素
document.body.appendChild(div); 追加元素
createAttribute("") 创建属性
createTextNode("click") 添加文本节点
lastChild 最后一个子节点