<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h4>操作成功</h4>
<p><span id="clock"></span>秒后回到主页<a herf="javascript:j()">返回</a></p>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var num=5;
function i(){
var time=new Date();
document.getElementById("clock").innerHTML=num;
num=num-1;
if(num==0){
window.history.back();
}
}
setInterval(i(),1000);
//通过window的location和history对象来控制网页的跳转。
function j(){
window.location.href="www.baidu.com";
}
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
.link{
color:blue;
}
</style>
</head>
<body>
<!--先编写好网页布局-->
<h4>操作成功</h4>
<p><span id="clock">5</span>秒后回到主页 <u class=link onclick="j()">返回</u>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var num = 5;
function i() {
num = num - 1;
if (num == 0) {
window.location.href = "https://www.baidu.com";
}
document.getElementById("clock").innerHTML = num;
}
setInterval(i, 1000);
//通过window的location和history对象来控制网页的跳转。
function j() {
window.history.back();
}
</script>
</body>
</html>
setInterval(i(),1000);
改为setInterval("i()",1000);
操作成功<br><br>
操作成功<br><br>
<span id="txt"></span>秒后返回到主页 <a>返回</a>
var num=5;
function i(){
document.getElementById("txt").innerHTML=num;
num=ary-1;
setTimeout(i,1000);
if(num==0){
window.location.assign("https://www.imooc.com/code/49");
}
}
setTimeout(i,1000);