码迷,mamicode.com
首页 > Web开发 > 详细

原生js删除多个相同类名的子元素

时间:2019-10-29 15:34:33      阅读:429      评论:0      收藏:0      [点我收藏+]

标签:char   sibling   child   lse   document   tno   class   func   span   

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>demo</title>
</head>
<body>
    <div class="tempDiv"></div>
    <div class="tempDiv"></div>
    <div class="tempDiv"></div>
    <div class="tempDiv"></div>
    <div class="tempDiv"></div>
    <div class="tempDiv"></div>
</body>
</html>

 

function removeChild() {
        var child= document.getElementsByClassName("tempDiv");
        child.removeNode = [];
        if (child.length != undefined) {
            var len = child.length;
            for (var i = 0; i < len; i++) {
                child.removeNode.push({
                    parent: child[i].parentNode,
                    inner: child[i].outerHTML,
                    next: child[i].nextSibling
                });
            }
            for (var i = 0; i < len; i++){
                child[0].parentNode.removeChild(child[0]);
            }
        } else {
            child.removeNode.push({
                parent: child.parentNode,
                inner: child.outerHTML,
                next: child.nextSibling
            });
            child.parentNode.removeChild(child);
        }
    }

 

原生js删除多个相同类名的子元素

标签:char   sibling   child   lse   document   tno   class   func   span   

原文地址:https://www.cnblogs.com/xxySsm/p/11758759.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!