弄花香满衣
2016-10-26 10:04
<!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>
你实在是太粗心了,两个错误,看下面代码中的注释:
var oldnode=document.getElementById("oldnode"); //你的 "oldnode"少了一个n
var newnode=document.createElement("i");
newnode.innerHTML=oldnode.innerHTML;
oldnode.parentNode.replaceChild(newnode,oldnode);//parentNode中的Node首字母大写!!!!
oldnode获取ID错了,少了个n
oldnode.parentNode.replaceChild(newnode,oldnode);
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题