DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> 添加和刪除HTML節點的簡單示例
添加和刪除HTML節點的簡單示例
編輯:HTML和Xhtml     

添加和刪除HTML節點的簡單示例
添加和刪除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>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved