我是靠谱客的博主 包容天空,这篇文章主要介绍javascript使用appendChild追加节点实例,现在分享给大家,希望可以做个参考。

本文实例讲述了javascript使用appendChild追加节点的方法。分享给大家供大家参考。具体分析如下:

DOM树节点的增加,实例代码如下:

复制代码 代码如下:
复制代码
<html>
<head>
<script type="text/javascript">
function t(){
 var nodep = document.createElement('p');//创建p节点
 var art = document.createTextNode('你好,世界');//创建文本节点
 
 var cont = document.getElementById('container');//获取节点
 cont.appendChild(nodep);//增加节点
 nodep.appendChild(art);//增加文本节点
}
</script>
<style type="text/css">
p{width:100px;height:100px;background:green;}
#container p{width:100px;height:100px;background:blue;}
</style>
</head>
<body>
<div id="container"><p>hello world</p>
</div>
<p>说两句吧</p>
<hr />
<button onclick="t()" value="">增加节点</button>
</body>
</html>

希望本文所述对大家的javascript程序设计有所帮助。

最后

以上就是包容天空最近收集整理的关于javascript使用appendChild追加节点实例的全部内容,更多相关javascript使用appendChild追加节点实例内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(114)

评论列表共有 0 条评论

立即
投稿
返回
顶部