问答详情
源自:9-20 网页尺寸offsetHeight

这样写有什么错误呢?我写的这个链接没有地方显示出来呀??

这样写有什么错误呢?我写的这个链接没有地方显示出来呀??

<!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>


提问者:小龙lo 2015-08-02 21:02

个回答

  • 炎夏
    2015-08-07 12:12:34
    已采纳

    首先<script>里多了个},然后a.style.color=red这里的red应该加“”