为了账号安全,请及时绑定邮箱和手机立即绑定

为什么没有效果啊?求教大神

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

正在回答

3 回答

你实在是太粗心了,两个错误,看下面代码中的注释:

var oldnode=document.getElementById("oldnode"); //你的 "oldnode"少了一个n
var newnode=document.createElement("i");
newnode.innerHTML=oldnode.innerHTML;
oldnode.parentNode.replaceChild(newnode,oldnode);//parentNode中的Node首字母大写!!!!

0 回复 有任何疑惑可以回复我~

oldnode获取ID错了,少了个n

0 回复 有任何疑惑可以回复我~

oldnode.parentNode.replaceChild(newnode,oldnode);

0 回复 有任何疑惑可以回复我~
#1

弄花香满衣 提问者

不可以呀,还是没有效果??
2016-10-26 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么没有效果啊?求教大神

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信