【发布时间】:2012-02-20 22:32:08
【问题描述】:
我已经用这个 HTML 和 javascript 摆弄了一两个小时了......我不知道为什么它不起作用。我一直在尝试自己学习 html、css 和 javascript……但我认为 Eclipse 不能很好地调试我的东西……这是怎么回事?
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<style type="text/css">
a:link {color:#FF0000;} /* unvisited link */
a:visited {color:#00FF00;} /* visited link */
a:hover {color:#FF00FF;} /* mouse over link */
a:active {color:#0000FF;} /* selected link */
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Catlard.com</title>
<link rel=StyleSheet href="styles/menuStyle.css" type="text/css"/>
<script type="text/javascript">
function RandomQuote()
{
var quotes= new Array();
quotes[0] = "...believes it may be useful in a time of need."
quotes[1] = "...knows you have a problem, but accepts you anyway."
quotes[2] = "...believes the aliens were involved at Oak Island."
quotes[3] = "...demands to know the location of your hidden rebel base!"
quotes[4] = "...SAW you take the cookie from the cookie jar."
return quotes[Math.floor(Math.random() * 4.99);
}
</script>
</head>
<body>
<div id="framecontent">
<div class="innertube">
<h1>CSS Top Frame Layout</h1>
<span style="font-family : Courier;color: #000000;">
<a href="resume.html"> Resume </a>
<a href="http://catlard.blogspot.com"> Blog </a>
<a href="pixelating.html"> Arts n' Farts</a>
<a href="contact.html"> Contact </a>
<a href="typing.html"> Games </a>
</span>
</div>
</div>
<div id="maincontent">
<div class="innertube">
document.write(RandomQuote());
<p style="text-align: center">Blah blah blah </p>
</div>
</div>
</body>
</html>
【问题讨论】:
-
您没有告诉我们运行此程序时会发生什么。有什么问题?
-
啊,对不起。当我运行它时,它在我调用该函数的浏览器中不显示任何内容。
-
因为你没有调用你的代码。它被格式化为文本。尝试将其放入另一个脚本标签中。 -1 表示缺少 r
-
缺少 r-?对不起,我有点困惑。
-
+1 表示勇敢但徒劳地尝试通过添加神秘的“r”来修复。
标签: javascript html css string random