PHP程序员站--PHP编程开发平台
 当前位置:主页 >> 网页制作 >> HTML >> 

添加和删除HTML节点的简单示例

添加和删除HTML节点的简单示例

来源:互联网  作者:未知  发布时间:2007-12-21
添加和删除HTML节点的简单示例 以下为引用的内容: input type="button" onclick="appendnode()" value="添加节点" input type="button" onclick="removenode()" value="删除节点" div id="result"/div script i=0 function appendnode() { o=document.createElement("D
添加和删除HTML节点的简单示例

以下为引用的内容:
<input type="button" onclick="appendnode()" value="添加节点">
<input type="button" onclick="removenode()" value="删除节点">
<div id="result"></div>
<script>
i=0
function appendnode() {
o=document.createElement("DIV");
o.innerHTML="test"+i
document.getElementById('result').appendChild(o);
i++
}

function removenode(){
var x = document.getElementById('result');
x.removeChild(x.lastChild) //从最后个节点删除
}
</script>

Tags: html   示例  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号