JavaScript函数的调用
后来检查发现在onload与onunload事件所对应的方法调用时,没有打括号,造成的。
错误的代码:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script language="JavaScript">
//alert("这是第一个JavaScript例子。");
//alert("欢迎你进入JavaScript世界!");
//alert("今后我们将共同学习JavaScript知识!");
//document.write("这是赛迪网互动学校");
//document.close();
function loadfrom(){
alert("加载页面!");
}
function unloadfrom(){
alert("关闭页面!");
}
</script>
</head>
<body OnLoad="loadfrom" OnUnload="unloadfrom">
<p> </p>
</body>
</html>
正确的代码:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script language="JavaScript">
//alert("这是第一个JavaScript例子。");
//alert("欢迎你进入JavaScript世界!");
//alert("今后我们将共同学习JavaScript知识!");
//document.write("这是赛迪网互动学校");
//document.close();
function loadfrom(){
alert("加载页面!");
}
function unloadfrom(){
alert("关闭页面!");
}
</script>
</head>
<body OnLoad="loadfrom()" OnUnload="unloadfrom()">
<p> </p>
</body>
</html>