用js实现:比如网页加载时自动打开百度,然后过3秒后自动关闭百度?
展开全部
改一下触发事件
<!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=gb2312" />
<title>打开指定URL的窗口/改变链接时候状态栏的文字</title>
<script language="javascript">
/*申明一个代表窗体对象的变量,这是关键,他作为全局变量,后面两个函数都可以访问他
不赋值,也表示该值为null ,在if的时候就是false */
var Wind;
function newWindow(url)
{//这里申明一个根据传来的地址打开新窗口的函数
Wind=window.open(url,"","width=400,height=300");//将打开的窗口对象作为值赋给Wind对象,括号里意思(地址,长宽)
}
function closeWind()
{//关闭打开的新窗口,否则提示
if(Wind)//如果Wind对象存在
{
Wind.close();//调用关闭方法
Wind=null//并把值赋成null
}
else
{//否则,也就是
alert("窗口早已关闭");
}
}
</script>
</head>
<body>
<p>
<input type="submit" name="tijiao" value="打开百度" onclick="newWindow('http://www.baid.com')" />
</p>
<p>
<input type="submit" name="close" value="关闭刚才打开的窗口" onclick="closeWind()" />
</p>
</body>
</html>
<!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=gb2312" />
<title>打开指定URL的窗口/改变链接时候状态栏的文字</title>
<script language="javascript">
/*申明一个代表窗体对象的变量,这是关键,他作为全局变量,后面两个函数都可以访问他
不赋值,也表示该值为null ,在if的时候就是false */
var Wind;
function newWindow(url)
{//这里申明一个根据传来的地址打开新窗口的函数
Wind=window.open(url,"","width=400,height=300");//将打开的窗口对象作为值赋给Wind对象,括号里意思(地址,长宽)
}
function closeWind()
{//关闭打开的新窗口,否则提示
if(Wind)//如果Wind对象存在
{
Wind.close();//调用关闭方法
Wind=null//并把值赋成null
}
else
{//否则,也就是
alert("窗口早已关闭");
}
}
</script>
</head>
<body>
<p>
<input type="submit" name="tijiao" value="打开百度" onclick="newWindow('http://www.baid.com')" />
</p>
<p>
<input type="submit" name="close" value="关闭刚才打开的窗口" onclick="closeWind()" />
</p>
</body>
</html>
追问
写的好多啊,我没有看明白,我的意思是:我有一个index.html的页面,我如何修改index.html的代码,可以满足以下功能:当打开index.html的时候,同时打开百度,过3秒之后,百度自动关闭。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询