课程
/前端开发
/JavaScript
/JavaScript进阶篇
直接提交 content.removeChild(content.childNodes[i])为什么不行一定要分两步呢?
2016-01-09
源自:JavaScript进阶篇 9-14
正在回答
可以这么做。有时一个对象的属性被多次用到时会定时一个变量存储起来,但这里只用到一次,就没有必要用变量存储起来了。
举报
本课程从如何插入JS代码开始,带您进入网页动态交互世界
1 回答for 函数中 content.removeChild(content.childNodes[0]); 为什么不是 content.removeChild(content.childNodes[i]);
2 回答for 函数中 content.removeChild(content.childNodes[0]); 为什么不是 content.removeChild(content.childNodes[i]);
1 回答for函数中为什么是 content.removeChild(content.childNodes[0]); 而不是 content.removeChild(content.childNodes[i]);
1 回答for(var i=content.childNodes.length-1;i>=0;i--){ var childNode=content.childNodes[i] content.removeChild(childNode) }
1 回答for(i=0;i<content.childNodes.length;i++) content.removeChild(content.childNodes[i]);为什么点击第一下删除前面三个?