添加和删除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> |