Dom 结点创建 基础知识
程序员文章站
2022-10-14 22:03:20
复制代码 代码如下: var body = document.body; var html = document.documentelement; var div = do...
复制代码 代码如下:
var body = document.body;
var html = document.documentelement;
var div = document.createelement("div");
var p = document.createelement("p");
var ali = document.createtextnode("alipay");
p.appendchild(ali);
div.appendchild(p);
div.setattribute("id","fn-div");
div.setattribute("class","fn-class");
body.appendchild(div);
var arr = div.attributes;
for(var i=0;i<arr.length;i++){
console.log(arr[i].name + ":" + arr[i].value);
}
上一篇: C# TreeView控件使用代码