页面删除div
<div id="div2">
<asp:TextBox ID="name" runat="server" Width="100px"></asp:TextBox>
<asp:TextBox ID="sex" runat="server" Width="100px"></asp:TextBox>
<input type ="text" id ="ds" value ="gg" />
<a href="javascript:$_check()" >检测</a>
<input type ="button" value="ddd" onclick ="$_check()"/>
</div>
具体js
var div = document.getElementById("div2");
div.style.display = "none"; //隐藏而不删除
div.parentNode.removeChild(div); //删除
alert(document.getElementById("div2").innerHTML)
大家可以运行这看看结果,经过我的测试,如果执行了
div.parentNode.removeChild(div); //删除
然后执行这个:
alert(document.getElementById("div2").innerHTML)
会找不到对象,真正删除了 div,但是
div.style.display = "none"; //隐藏而不删除
这个只是隐藏