当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM replaceChild()用法及代码示例


HTML DOM中的replaceChild()方法用于在给定父节点内用新节点替换子节点。

用法:

parentNode.replaceChild( newChild, oldChild )

参数值:此方法接受下面列出的两个参数:


  • newChild:它是必需的参数。它代表需要插入的新节点。
  • oldChild:它是必需的参数。它代表被新节点替换的节点。

返回值:它返回一个代表替换节点的节点对象。

例:在此示例中,第一个<li>文本被替换为新文本。

<!DOCTYPE html> 
<html> 
    <head> 
        <title>DOM replaceChild() Method</title> 
    </head> 
      
    <body> 
      
        <h1 style="color:green;"> 
            GeeksforGeeks 
        </h1> 
          
        <h2> 
            DOM replaceChild() Method 
        </h2> 
          
        <p>Sorting Algorithm</p> 
        <ul id = "listitem"><li>Insertion sort</li> 
            <li>Merge sort</li> 
            <li>Bubble sort</li> 
        </ul> 
          
        <button onclick ="Geeks()"> 
            Click Here! 
        </button> 
      
        <script> 
        function Geeks() { 
            var doc = document.createTextNode("Quick sort"); 
            var list = document.getElementById("listitem").childNodes[0]; 
            list.replaceChild(doc, list.childNodes[0]); 
        } 
        </script> 
      
    </body> 
</html>                    

输出:
在单击按钮之前:
replaceChild
单击按钮后:
replaceChild

支持的浏览器:下面列出了DOM replaceChild()方法支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


注:本文由纯净天空筛选整理自Vishal Chaudhary 2大神的英文原创作品 HTML | DOM replaceChild() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。