<!DOCTYPE html> <html> <head> <title>浏览器对象</title> <meta http-equiv="Content-Type" content="text/html; charset=gkb"/> </head> <body> <!--先编写好网页布局--> <h1>操作成功</h1> <h2><span id="seconds">5</span>秒后回到主页 <a href="javascript:history.back()">返回</a></h2> <script type="text/javascript"> function clock(){ var nowtime=new Date(); var num=nowtime.getSeconds(); document.getElementById("seconds").innerHTML=num; if(num=0){ document.getElementById("seconds").innerHTML=num--1; } else{ window.history.go(-1); } } setInterval("clock()",1000); //获取显示秒数的元素,通过定时器来更改秒数。 //通过window的location和history对象来控制网页的跳转。 </script> </body> </html>
stone310
慕用4288045
西兰花伟大炮
相关分类