为什么这串代码点击“将粗体改为斜体”不出现内容?

来源:9-15 替换元素节点replaceChild()

卡兰尼克

2016-12-08 14:15

<!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吗 为什么这里没反应啊= =

写回答 关注

3回答

  • 剑指山峰
    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"); 你这是中文的分号

    慕粉1846... 回复卡兰尼克

    我复制了一下,改了这个分号就可以了呀

    2016-12-21 13:32:33

    共 2 条回复 >

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

    javascript直接就没了

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题