网站出bug了啊!!!以下代码调整数次没有错误,但提交后一直显示错误!!今天是2015.4.14 16:36
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>
<body>
<!--调整前的代码
<div id="con">
<p>javascript</p>
<div>jQuery</div>
<h5>PHP</h5>
</div>
-->
<div id="con"><p>javascript</p><div>jQuery</div><h5>PHP</h5></div>
<script type="text/javascript">
var x=document.getElementById("con");
document.write("Firstnode name:"+x.firstChild.nodeName+"<br />"+"Firstnode value:"+x.firstChild.nodeValue+"<br />"+"Firstnode type:"+x.firstChild.nodeType+"<br />"+"<br />");
document.write("Lastnode name:"+x.lastChild.nodeName+"<br />"+"Lastnode value:"+x.lastChild.nodeValue+"<br />"+"Lastnode type:"+x.lastChild.nodeType+"<br />"+"<br />");
</script>
</body>
</html>