问答详情
源自: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 newnode= document.createElement("i");

      var newnodetxt=document.createTextNode("hehe");

      newnode.appendChild(newnodetxt);

      var oldnode=document.getElementById("oldnode");

      oldnode.parentNode.replaceChild(newnode,oldnode)

  

       }    

  </script>

  

 </body>

</html>


不是应该点击“将加醋改为斜体”以后javascript会变成hehe吗 为什么这里没反应啊= =

提问者:卡兰尼克 2016-12-08 14:15

个回答

  • 剑指山峰
    2016-12-20 15:21:06

    var newnodetxt=document.createTextNode("hehe");

    newnode.appendChild(newnodetxt);这两句有问题,概念混淆,你使用的是替换,就没必要在使用添加。改成newnode.innerHTML="hehe";试试

  • 水里有条鱼
    2016-12-09 10:37:09

    var newnodetxt=document.createTextNode("hehe"); 你这是中文的分号

  • 卡兰尼克
    2016-12-08 14:18:29

    javascript直接就没了