这样写有什么错误呢?我写的这个链接没有地方显示出来呀??
这样写有什么错误呢?我写的这个链接没有地方显示出来呀??
<!DOCTYPE HTML>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<script type="text/javascript">
var w= document.documentElement.offsetWidth || document.body.offsetWidth;
var h= document.documentElement.offsetHeight || document.body.offsetHeight;
var a=document.createElement("a");
a.href="http://www.imooc.com/";
a.innerHTML="慕课网";
a.style.color=red;
document.body.appendChild(a);
}
document.write(a);
document.write(w+"*"+h);
</script>
</body>
</html>