QAQQQQ
2015-08-19 11:23
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<div>
<h2>操作成功</h2>
<a><strong>5</strong>秒后返回主页</a>
<a href="window.history.back()">返回</a><!--先编写好网页布局-->
</div>
<script type="text/javascript">
function haha(){
var time=new Date();
attent=time.getSeconds();
if(attent==5){
window.open('http://www.baidu.com','_blank','width=700px,height=600px');
clearInterval(setInterval(haha,1000));
}//获取显示秒数的元素,通过定时器来更改秒数。
}
setInterval(haha,1000);
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
你真的获取打牌指定元素了么?
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题