逃离外包
2019-01-29 13: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");
// 在此完成该函数
for(i=0;i<content.childNodes.length;i++){
// 1. IE全系列、firefox、chrome、opera、safari兼容问题
// 2. 节点之间的空白符,在firefox、chrome、opera、safari浏览器是文本节点
if(content.childNodes[i].nodeType!=1){
continue;
}else{
var x=content.removeChild(content.childNodes[i]);
x=null;
}
}
}
</script>
<button onclick="clearText()">清除节点内容</button>
</body>
</html>
实现了,不知道科学不
function clearText() {
var content=document.getElementById("content");
// 在此完成该函数
mylength=content.childNodes.length;
for (var i=1; i<mylength; i++){
content.removeChild(content.childNodes[i]);
}
content.childNodes.length
if(content.childNodes[i].nodeType!=1){
continue;
666
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题