为什么没有输出呢?
源代码如下:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style type="text/css">
.message{
width:200px;
height:100px;
background-color:#CCC;}
</style>
</head>
<body>
<script type="text/javascript">
function car(){
var mian=document.body;
var newnode=document.createElement("p");
newnode.className="name";
var textnode=newnode.createTextNode("I love javascript1");
main.appendChild(newnode);
newnode.appendChild(textnode);
}
car();
</script>
</body>
</html>