首页 > Web开发 > 详细

js实现考试倒计时

时间:2018-08-22 18:04:38      阅读:452      评论:0      收藏:0      [点我收藏+]

<html>

   <head>
   </head>

   <body>
      <input type="text" name="mss" id="mss"/>
      
      <form action="./index.html">
        <input type="text" value="name" name="name"/>   

     </form>
 
   <body>

</html>


<script type="text/javascript">
<!--
   window.onload=function(){
     
        daojishi();
     }

      var counttime=90*60;//总秒钟
     
      function daojishi(){
      if(counttime>=0){
             var ms = counttime%60;//余数 89%60==29秒
             var mis = Math.floor(counttime/60);//分钟
             if(mis>=60){
              var hour=Math.floor(mis/60);

     mis=Math.floor((counttime-hour*60*60)/60);

              document.getElementById("mss").value=hour+"小时"+mis+"分"+ms+"秒数";
             }else if(mis>=1){
              document.getElementById("mss").value=mis+"分"+ms+"秒数"; 
             }else{
              document.getElementById("mss").value=ms+"秒数"; 
             }

   
              counttime--;
              vartt =  window.setTimeout("daojishi()",1000);
   }else{
       window.clearTimeout(vartt);
       window.confirm("考试时间结束,请单击提交"); 
       tijiao();
      
   }

   
     }
     
     function tijiao(){
        document.forms[0].submit();
     }
//-->
</script>

js实现考试倒计时

原文:https://www.cnblogs.com/feiwenstyle/p/9519132.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!