问答详情
源自:9-15 替换元素节点replaceChild()

错在哪,结果没变化

<!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 oldnode=document.getElementById("oldnode");
        var newnode=document.creatElement("i");
        newnode.innerHTML=oldnode.innerHTML;
        oldnode.parentNode.replaceChild(newnode,oldnode);
    
       }   
  </script>
 
 </body>
</html>


提问者:慕田峪6997291 2017-03-13 15:20

个回答

  • 七里顺水河
    2017-03-13 19:33:33
    已采纳

    create