为了账号安全,请及时绑定邮箱和手机立即绑定

不知道哪里错了啊啊

<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title> 
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>  
 </head>
 <body>
  <!--先编写好网页布局-->
  <h1>操作成功</h1>
 
  <div><span class="second">5</span>秒后返回主页<a href="javascript:way();">返回</a>
  <script type="text/javascript"> </div>
  var sec=document.getElementById("second");
  var i=5;
var timer = setInterval (function(){
  i--;
  sec.innerHTML=i;
  if(i==1)
  {window.location.href"http://www.imooc.com/";}
},1000);
   //获取显示秒数的元素,通过定时器来更改秒数。
function way(){
    window.history.go(-1));
}
   //通过window的location和history对象来控制网页的跳转。
  
 </script>
</body>
</html>

正在回答

3 回答

<span class="second">5</span>  应该是 id="second"

</div>  位置错了  

 window.history.go(-1)); 多了一个)


1 回复 有任何疑惑可以回复我~

<!DOCTYPE html>

<html>

<head>

<title>浏览器对象</title>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

</head>

<body>

<!--先编写好网页布局-->

<h1>操作成功</h1>

<div><span id="second">5</span>秒后返回主页

<a href="" onclick="way()">返回</a>

</div> 

<script type="text/javascript">

var sec = document.getElementById("second");

var i = 5;

function countNum() {

i--;

sec.innerHTML = i;

if(i == 0) {

window.location.assign("https://www.imooc.com/");

}

}

var timer = setInterval("countNum()", 1000);

//获取显示秒数的元素,通过定时器来更改秒数。

function way() {

window.history.go(-1);

}

//通过window的location和history对象来控制网页的跳转。

</script>

</body>

</html>



1 回复 有任何疑惑可以回复我~

你这</div>标签乱放

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JavaScript进阶篇
  • 参与学习       468270    人
  • 解答问题       21891    个

本课程从如何插入JS代码开始,带您进入网页动态交互世界

进入课程

不知道哪里错了啊啊

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信