javascript使用appendChild追加节点实例
本文实例讲述了javascript使用appendChild追加节点的方法。分享给大家供大家参考。具体分析如下:
DOM树节点的增加,实例代码如下:
<html>
<head>
<scripttype="text/javascript">
functiont(){
varnodep=document.createElement('p');//创建p节点
varart=document.createTextNode('你好,世界');//创建文本节点
varcont=document.getElementById('container');//获取节点
cont.appendChild(nodep);//增加节点
nodep.appendChild(art);//增加文本节点
}
</script>
<styletype="text/css">
p{width:100px;height:100px;background:green;}
#containerp{width:100px;height:100px;background:blue;}
</style>
</head>
<body>
<divid="container"><p>helloworld</p>
</div>
<p>说两句吧</p>
<hr/>
<buttononclick="t()"value="">增加节点</button>
</body>
</html>
希望本文所述对大家的javascript程序设计有所帮助。