问答详情
源自:9-14 删除节点removeChild()

分享答案,欢迎交流。

for (var i=0; i<content.childNodes.length; i++){
while(content.childNodes.length!=0){
   content.removeChild(content.childNodes[i]);
    }



提问者:啥哈 2019-03-31 15:45

个回答

  • 啥哈
    2019-03-31 15:55:22

    for (var i=0; i<content.childNodes.length; i++){
    while(content.childNodes.length!=0){
       content.removeChild(content.childNodes[i]);
        }

    }

    上一个代码最后少了个“}”