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

javascript进阶篇8-7编程练习 烦透了,自己写又写不出,照着写还错!!!请帮我找找,谢谢了。

这是我抄写的代码

正在回答

4 回答

<body>
  <!--先编写好网页布局-->
  <h3>操作成功</h3>
  <p><span id="count">5</span>秒后回到主页<a href="goback()">返回</a></p>
 
  <script type="text/javascript">   
   //获取显示秒数的元素,通过定时器来更改秒数。
    var count = document.getElementById("count");
    var timer = setInterval(clock,1000);
    var num = 5;
    function clock(){    
      count.innerHTML = num;
      num--;      
      if(num<0){
        clearInterval(timer);  
      //  window.location.href = 'http:www.imooc.com';
      }
    }
   //通过window的location和history对象来控制网页的跳转。
    function goback(){  //没弄起
      window.history.back();
    }
 </script>
</body>

我测试过,可以。最近在学JS.

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

慕粉4340077 提问者

加油!请问你是自己写出来的吗?你平常都怎么学习?
2016-12-05 回复 有任何疑惑可以回复我~
#2

烟云藏锋 回复 慕粉4340077 提问者

自己写的,有些功能还没实现。 先看了叫 javascript DOM编程艺术的书,然后就在这里学。
2016-12-06 回复 有任何疑惑可以回复我~

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h3>操作成功</h3>

 <span id=time>5</span>秒后回到主页 

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

 

  <script type="text/javascript">  

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

   var timeS=5;

   var i=setInterval(function(){

       document.getElementById("time").innerHTML=timeS;

       timeS--;

       if(timeS<=0) {

        clearInterval(i);

        location.href="http://www.imooc.com";  

       }

       },1000);

   function back() {

       window.history.back();

   }

 </script> 

 

</body>

</html>


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

慕粉4340077 提问者

谢谢了!网友们都很热情,在这里才能找到感觉。你是如何学习JS的呢?可否介绍一下经验,共同进步。
2016-12-05 回复 有任何疑惑可以回复我~
#2

hs00 回复 慕粉4340077 提问者

没什么经验,我也是初学者,主要基础知识看了,之后,多写多练,不懂的就搜索,入门并不难
2016-12-05 回复 有任何疑惑可以回复我~

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

<h1> 操作成功</h1>

<p><span id="seconds"></span>s后回到主页<a href="http://www.imooc.com">返回</a></p>

<script>

var num=5;

function seconds(){

document.getElementById("seconds").innerHTML=num;

num--;

var i=setTimeout("seconds()",1000);

if(num<=0){

clearTimeout(i)

location.href="http://www.imooc.com";

}

}

seconds();

</script>


</body>

</html>


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

慕粉4340077 提问者

谢谢!很好,你是自己琢磨出来的吗?好厉害
2016-12-05 回复 有任何疑惑可以回复我~

 <body>

    <h1>操作成功!</h1>


  <p><span id="seconds">5</span>秒回到主页<a href=”JavaScript:void(0)” id=”back” onclick=”back()”>返回</a></p>


  <script type="text/javascript">

var num=5;

 function typeSeconds(){


document.getElementById("seconds").innerHTML = num;


num--;


var i = setTimeout("typeSeconds()",1000);


if (num<=0) {


clearTimeout(i);


location.href="http://www.baidu.com";


}


}


typeSeconds();

 function back(){


history.back();


}

</script>

 </body>


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

慕粉4340077 提问者

谢谢!我试试看。你们是怎么学习js的?
2016-12-05 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

javascript进阶篇8-7编程练习 烦透了,自己写又写不出,照着写还错!!!请帮我找找,谢谢了。

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