码迷,mamicode.com
首页 > 其他好文 > 详细

fragment 动态删除firstChild节点

时间:2014-11-06 19:12:29      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   ar   sp   div   on   log   

//$(‘<ul><li><p>sdfdfdf</p></li></ul>‘)
                    var eTempDiv = document.createElement(‘div‘),frag = document.createDocumentFragment();
                    
                    eTempDiv.innerHTML =‘<li><p>sdfdfdf</p></li><li><p>sdfddddddfdf</p></li>‘;

                    while(eTempDiv.firstChild){
            alert(eTempDiv.innerHTML);
                        if(eTempDiv.firstChild.nodeType==1){
                            frag.appendChild(eTempDiv.firstChild);
                            alert(eTempDiv.innerHTML);
                        }
                    }
                    console.log(frag.childNodes.length);

fragment 动态删除firstChild节点

fragment 动态删除firstChild节点

标签:des   style   blog   color   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/rocky2/p/4079229.html

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