谁沉冥到,那无边的深,将热爱着,这最生动的生

.net 2.0 c#学习

导航

增加和删除Html节点方法:

增加和删除Html节点方法:
<input type="button" onclick="a()" value="add">
<input type="button" onclick="b()" value="del">
<div id=m></div>
<script>
i=0
function a()
{
o=document.createElement("DIV")
o.innerHTML="<a href=''>test"+i+"</a>"
document.all.m.appendChild(o)
i++
}
function b()
{
document.all.m.removeChild(document.all.m.firstChild)
}
</script>

posted on 2006-10-12 10:36  天若有情  阅读(468)  评论(0编辑  收藏  举报