新手如下问
为什么点击清除时刚开始一次没反应,第二次就一下子删了两个,随后点就是一次一个,why?
<body>
<div id="content">
<h1>html</h1>
<h1>php</h1>
<h1>javascript</h1>
<h1>jquery</h1>
<h1>java</h1>
</div>
<script type="text/javascript">
function clearText() {
var content=document.getElementById("content");
for(var i=0;i<content.childNodes.length;i++)
{
x= content.removeChild(content.childNodes[i]);
}
// 在此完成该函数
if(content.childNodes.length<1)
alert("No childNodes to be delete!")
}
</script>
<button onclick="clearText()">清除节点内容</button>