for 函数中 content.removeChild(content.childNodes[0]); 为什么不是 content.removeChild(content.childNodes[i]);
function clearText() {
var content=document.getElementById("content");
var nole=content.childNodes.length;
for(var i=0;i<nole;i++)
{
content.removeChild(content.childNodes[0]); //问题
}
// 在此完成该函数
}
为什么是 content.removeChild(content.childNodes[0]);而不是 content.r
emoveChild(content.childNodes[i]);