主题:初学者急求解答:回答正确者+30分
小弟写了一段小代码运行后,单击"进入"可以跳转到百度的网站,但我要实现的用setTimeout()自动跳转功能不能实现,为什么?急!回答正确者重谢!!!
代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<script lanuage="javaScript">
function newwin()
{ var my=open("http://www.baidu.com","中国");
my.document.write("成功了!");
}
</script>
<body onLoad="setTimeout('newwin()',3000)">
<hi> 上海</hi>
<form>
<input type=button value="进入" onClick="newwin()">
</form>
</body>
</html>
代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<script lanuage="javaScript">
function newwin()
{ var my=open("http://www.baidu.com","中国");
my.document.write("成功了!");
}
</script>
<body onLoad="setTimeout('newwin()',3000)">
<hi> 上海</hi>
<form>
<input type=button value="进入" onClick="newwin()">
</form>
</body>
</html>