同学代码置顶那位大神用递减的方法就能实现
为啥递增就实现不了?
for(var i=0;i<content.childNodes.length;i++){ var chnode=content.childNodes[i]; content.removeChild(chnode); }
其中,content.childNodes.length会随着 ”content.removeChild(chnode)“的变动而变动,具体你可以看 底下的一个评论