替换元素节点replaceChild()

Posted 喵嘻嘻

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了替换元素节点replaceChild()相关的知识,希望对你有一定的参考价值。

replaceChild 实现子节点(对象)的替换。返回被替换对象的引用。 

语法:

node.replaceChild (newnode,oldnew ) 

参数:

newnode : 必需,用于替换 oldnew 的对象。 
oldnew : 必需,被 newnode 替换的对象。

注意: 

1. 当 oldnode 被替换时,所有与之相关的属性内容都将被移除。 

2. newnode 必须先被建立。 

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>
<body>
  <div><b id="oldnode">javascript</b>是一个很常用的技术,为网页添加动态效果。</div>
  <a href="javascript:replaceMessage()"> 将加粗改为斜体</a>
  
    <script type="text/javascript">
      function replaceMessage(){
        var inode = document.createElement("i");
        var itext = document.createTextNode("JavaScript");
        inode.appendChild(itext);
        var oldnode = document.getElementById("oldnode");
        oldnode.parentNode.replaceChild(inode,oldnode);
      }
  </script>
  
 </body>
</html>

 

以上是关于替换元素节点replaceChild()的主要内容,如果未能解决你的问题,请参考以下文章

DOM操作

[js高手之路] dom常用APIappendChild,insertBefore,removeChild,replaceChild,cloneNode详解与应用

[js高手之路] dom常用APIappendChild,insertBefore,removeChild,replaceChild,cloneNode详解与应用

[js高手之路] dom常用APIappendChild,insertBefore,removeChild,replaceChild,cloneNode详解与应用

替换子节点replaceChild()

替换DOM元素 parent.replaceChild(new, old)