编写一个包含一些非常简单的 Javascript 的小型 HTML 网页,我注意到完成后,它一直在旋转(firefox)。我在其他页面上看过很多次,一直以为是Javascript错误或循环问题,但我运行的这个程序肯定是完成了。
这是执行此操作的小型网页的一个示例。在您单击按钮并处理后,悸动者(感谢 Kooilinc 的术语)继续运行。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>Grade Tester</title>
<script language="javascript" type="text/javascript">
function calculate()
{
var grade = document.getElementById("grade").value.toUpperCase();
switch (grade)
{
case "A":
document.write("Outstanding Achievement");
break;
case "B":
document.write("Above Average");
break;
case "C":
document.write("Average Achievement");
break;
case "D":
document.write("Low Passing Grade");
break;
case "F":
document.write("Failing Grade");
break;
}
}
</script>
</head>
<body>
Grade:<input type="text" id="grade" />
<br /><input type="button" value="Get Result" onclick="calculate()" />
</body>
</html>
我可以通过点击停止(右键单击并停止)来停止它。
脚本完成后,我需要做什么才能让 Javascript 停止处理(或浏览器停止处理)?
注意 1:这发生在 FF4.01 中,而不是在 IE 或 Chrome 中(对于此代码示例)。
注2:我在switch语句后尝试了window.stop()函数,并没有停止跳动。
根据 Lekensteyn 的回答,switch 语句之后的 document.close() 解决了这个问题,但这是一个根本没有跳动并且不使用 document.close() 的示例。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>Lab 9.1</title>
</head>
<body>
<script language="javascript" type="text/javascript">
var phrase = "Every good boy does fine goes on the line."
document.write(phrase.length + "<br />");
for(var i = 0; i < phrase.length; i++)
{
document.write(phrase.charCodeAt(i) + " ");
}
document.write("<br />");
document.write(phrase.toLowerCase() + "<br />");
document.write(phrase.toUpperCase() + "<br />");
</script>
</body>
</html>