<!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 ord=document.getElementById("oldnode");
var nw=document.createElement("i");
ord.innerHTML=nw.innerHTML
ord.parentNode.replaceChild(nw,ord)
}
</script>
</body>
</html>
为什么只是消失了而不是变成斜体呢?
慕莱坞9220042
Caballarii
相关分类