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

来源:9-20 网页尺寸offsetHeight

小龙lo

2015-08-02 21:02

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

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


写回答 关注

1回答

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

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

    小龙lo

    非常感谢!

    2015-08-10 09:58:49

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题