[js高手之路] dom常用APIappendChild,insertBefore,removeChild,replaceChild,cloneNode详解与应用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[js高手之路] dom常用APIappendChild,insertBefore,removeChild,replaceChild,cloneNode详解与应用相关的知识,希望对你有一定的参考价值。
本文主要讲解DOM常用的CURD操作,appendChild(往后追加节点),insertBefore(往前追加节点),removeChild(移除节点),replaceChild(替换节点),cloneNode(克隆节点)的语法与实战应用
一、appendChild: 向元素的内部最后面增加一个节点,或者移动一个现有的节点到元素的内部最后面
用法:
someNode.appendChild( newNode )
someNode通常为元素的父节点
返回值:
返回新增加的节点
<input type="text" name="" id="txt"> <input type="button" value="添加" id="add"> <ul id="box"></ul> <script> var oBtn = document.querySelector("#add"); var oTxt = document.querySelector("#txt"); var oBox = document.querySelector("#box"); oBtn.onclick = function () { var oLi = document.createElement( "li" ); oLi.innerhtml = oTxt.value; var returnNode = oBox.appendChild( oLi ); console.log( returnNode === oLi ); //true console.log( returnNode === oBox.lastChild );//true } </script>
上例,把文本框的内容当做一个新节点,添加在id为box的元素的最后面,返回值returnNode就是新增加的节点,
所以 第12行和第13行的返回值为ture, lastChild表示元素的最后一个子节点
如果appendChild后面的参数是文档现有的节点,那么表示把当前节点移动到父元素的最后面
<input type="button" value="移动" id="btn"> <ul id="box"> <li><a href="javascript:;">王朝</a></li> <li><a href="javascript:;">马汉</a></li> <li><a href="javascript:;">张龙</a></li> <li><a href="javascript:;">赵虎</a></li> <li><a href="javascript:;">ghostwu</a></li> </ul> <script> var oBtn = document.getElementById("btn"); var oBox = document.getElementById("box"); oBtn.onclick = function () { var firstChild = oBox.firstElementChild || oBox.firstChild; var lastChild = oBox.lastElementChild || oBox.lastChild; var returnNode = oBox.appendChild( firstChild ); firstChild = oBox.firstElementChild || oBox.firstChild; lastChild = oBox.lastElementChild || oBox.lastChild; console.log( returnNode === firstChild ); //false console.log( returnNode === lastChild ); //true } </script>
上例,每次点击按钮,把第一个节点移动到最后,所以在第18行为false, 因为移动之后,他就不是第一个节点了,而变成最后一个节点,所以第19行比较结果为true
二、insertBefore:向一个元素前面追加节点
用法:
someNode.insertBefore( newNode, referNode );
第一个参数: newNode,需要插入的节点
第二个参数: referNode, 参考节点,即:newNode会插入到这个参考节点的前面,
注意:如果第二个参数为null, 效果等同于someNode.appendChild( newNode )
返回值:
新插入的节点
<input type="text" id="txt"> <input type="button" value="添加" id="add"> <ul id="box"></ul> <script> var G = function ( id ){ return document.getElementById( id ) }; var GG = function ( id, tag ){ return G(id).getElementsByTagName(tag) }; var oTxt = G( "txt" ), oBox = G( "box" ), oAdd = G( "add" ) aLi = GG( ‘box‘, ‘li‘ ); oAdd.onclick = function(){ var oLi = document.createElement("li"); oLi.innerHTML = oTxt.value, returnNode = null; //等价于oBox.appendChild( oLi ) // oBox.insertBefore( oLi, null ); // oBox.appendChild( oLi ); if( aLi[0] ) { returnNode = oBox.insertBefore( oLi, aLi[0] ); }else { returnNode = oBox.insertBefore( oLi, null ); } console.log( returnNode ); } </script>
三、removeChild: 移除一个节点
someNode.removeChild( node )
someNode通常为父元素,node就是父元素下面的一个元素
返回值: 当前被移除的元素
<input type="text" name="" id="txt"> <input type="button" value="移除" id="remove"> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> </ul> <script> var oRemove = document.querySelector( "#remove" ); var oUl = document.querySelector( "ul" ); oRemove.onclick = function(){ var n = parseInt( document.querySelector("#txt").value ); var returnNode = oUl.removeChild( oUl.children[n] ); console.log( returnNode ); } </script>
上例,在输入框中, 输入需要移除的子节点的索引,即可完成移除节点操作.
四、replaceChild: 用新节点去替换已经存在的节点
用法
someNode.replaceChild( newNode, node )
第一个参数:新节点
第二个参数: 被替换的节点
返回值: 返回当前被替换的子节点
下例,有点小复杂,用了节点缓存(设计模式中的享元模式)提高替换节点的性能,虽然只有8个节点,如果是上万个节点,会有明显的提高.
<input type="button" value="替换" id="replace"> <br> <span>第1个元素</span> <span>第2个元素</span> <span>第3个元素</span> <span>第4个元素</span> <span>第5个元素</span> <span>第6个元素</span> <span>第7个元素</span> <span>第8个元素</span> <script> var oReplace = document.querySelector("#replace"), aSpan = document.querySelectorAll("span"), page = 0, //当前页 perPage = 4, //每次替换4个 total = Math.ceil(aSpan.length / perPage); //总页数 var cache = (function () { var aEle = []; var create = function () { var oDiv = document.createElement("div"); aEle.push(oDiv); return oDiv; }; return { getDiv: function () { if (aEle.length < 4) { console.log(1); return create(); } else { console.log(2); var oDiv = aEle.shift(); aEle.push(oDiv); return oDiv; } } }; })(); var aCacheSpan = []; oReplace.onclick = function () { var oDiv = null; page++; if (page < 3) { if (aCacheSpan.length > 0) { var oBox = document.querySelector(‘div‘); for (var i = 0, len = aCacheSpan.length; i < len; i++) { document.body.insertBefore(aCacheSpan[i], oBox); } aCacheSpan = []; } for (var i = (page - 1) * perPage; i < (page - 1) * perPage + perPage; i++) { console.log(aSpan[i].innerHTML); oDiv = cache.getDiv(); oDiv.innerHTML = aSpan[i].innerHTML; aCacheSpan.push(document.body.replaceChild(oDiv, aSpan[i])); } } } </script>
五、cloneNode: 复制一个节点
用法:
someNode.clone( bool值 )
参数有两种情况:
如果为true: 代表深拷贝: 即复制当前节点和他下面的所有子节点
如果为false: 代表浅拷贝:即复制当前节点,不会复制他下面的子节点
返回值:返回当前被复制的元素
<input type="button" value="深拷贝" id="btn1"> <input type="button" value="浅拷贝" id="btn2"> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> </ul> <script> var oBtn1 = document.querySelector("#btn1"); var oBtn2 = document.querySelector("#btn2"); var oUl = document.querySelector( "ul" ); oBtn1.onclick = function () { var aNode = oUl.cloneNode( true ); console.log( aNode ); } oBtn2.onclick = function () { var aNode = oUl.cloneNode( false ); console.log( aNode ); } </script>
本文出自 “ghostwu” 博客,请务必保留此出处http://ghostwu.blog.51cto.com/11192807/1958817
以上是关于[js高手之路] dom常用APIappendChild,insertBefore,removeChild,replaceChild,cloneNode详解与应用的主要内容,如果未能解决你的问题,请参考以下文章
[js高手之路] dom常用APIappendChild,insertBefore,removeChild,replaceChild,cloneNode详解与应用
[js高手之路] dom常用APIappendChild,insertBefore,removeChild,replaceChild,cloneNode详解与应用
[js高手之路] dom常用APIappendChild,insertBefore,removeChild,replaceChild,cloneNode详解与应用