i 的字体属性(斜体)是什么时候加上去的?
<!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("oldnode");
var newnode = document.createElement("i");
newnode.innerHTML="JavaScript";
oldnode.parentNode.replaceChild(newnode,oldnode);
}
</script>
</body>
</html>
<b><b/>这个是粗体,<i><i/>这个是斜体。
b的ID是oldnode,
var oldnode = document.getElementById("oldnode");选择b标签
var newnode = document.createElement("i");新建i标签
oldnode.parentNode.replaceChild(newnode,oldnode);替换元素节点,把b变成i了