隐藏服务器控件产生的一些 div 和 input
在页面加载完成后
document.getElementById("__VIEWSTATE").parentNode.style.display="none";
document.getElementById("__EVENTVALIDATION").parentNode.style.display="none";
document.getElementById("__EVENTVALIDATION").parentNode.style.display="none";
在不知道id的情况下
<HEAD>
<script>
function removeElement()
{
var oChild=Div1.children(0); //div1中的第一个元素
var oChild2=Div1.children(1); //div1中的第二个元素
Div1.removeChild(oChild);
Div1.removeChild(oChild2);
}
</script>
</HEAD>
<body>
<div id='Div1'>
<input type="text" value="aa" />
<input type="text" value="aa" />
</div>
<input type="button" onclick="removeElement()" value="删除" />
</body>
<script>
function removeElement()
{
var oChild=Div1.children(0); //div1中的第一个元素
var oChild2=Div1.children(1); //div1中的第二个元素
Div1.removeChild(oChild);
Div1.removeChild(oChild2);
}
</script>
</HEAD>
<body>
<div id='Div1'>
<input type="text" value="aa" />
<input type="text" value="aa" />
</div>
<input type="button" onclick="removeElement()" value="删除" />
</body>