点击按钮删除节点不是想象中的那样
点击按钮,第一次没有操作结果,第二次删除三个节点,后面就是点击一次删除一个。这是为什么呢?
2018-01-12
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>
<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");
// 在此完成该函数
while(content.firstChild=true){
content.removeChild(content.firstChild);
}
}
</script>
<button onclick="clearText()">清除节点内容</button>
</body>
</html>
举报