标签: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节点
标签:des style blog color ar sp div on log
原文地址:http://www.cnblogs.com/rocky2/p/4079229.html