zoukankan      html  css  js  c++  java
  • js实现考试倒计时

    <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>

  • 相关阅读:
    java内置数据类型
    docker安装及配置
    redis持久化
    golang linux安装
    TCP/IP协议
    php高并发,大流量
    C语言阐述进程和线程的区别
    python 消息队列-rabbitMQ 和 redis介绍使用
    python 新手题目-文件读写-关键字判断
    python IO模式(多路复用和异步IO深入理解)
  • 原文地址:https://www.cnblogs.com/feiwenstyle/p/9519132.html
Copyright © 2011-2022 走看看