var div = document.getElementById("DivId");div.style.display = "none"; //隐藏而不删除div.parentNode.removeChild(div); //删除
另一种方法div.removeNode(true);