zoukankan      html  css  js  c++  java
  • 显示倒计时,为零时自动点击按钮提交【JavaScript实现】

    原文发布时间为:2008-10-17 —— 来源于本人的百度文章 [由搬家工具导入]

    <html>
    <head>
    <title>显示倒计时,完毕提交</title>
    <script language="JavaScript">      
    function   testTime()   {  
          if(sec==-1){
                 min--;
            if(min!=-1)
                 sec=59;
            else
               document.getElementById("button1").click();
          }           
          if(sec>=0)
               document.getElementById("showTime").innerHTML = "<font color=red>"+timeFormat

    (min)+" : "+timeFormat(sec)+"</font>";   
          sec--;
    }

    function timeFormat(time){
         if(time<10)
             return "0"+time;
         else
             return time;
    }

    function showTime(){
          if(document.all)
    setInterval("testTime()",1000);
    }
    </script>
    </head>
    <body onload="min=1;sec=12;showTime()">
    <span   id="showTime"></span>
    <br></br>
    <button id="button1" OnClick=alert('时间到,自动提

    交!');window.location.href="http://www.baidu.com">提交</button>
    </body>
    </html>

  • 相关阅读:
    jquery 知识点
    java基础 知识点
    eclipse使用问题
    java中各种集合的用法和比较
    svn服务器安装
    dbcp连接mysql
    java中分页的实现
    在maven框架下遇到的问题及解决方法
    c++获取系统时间,精确到ms级
    qtcreator.exe已停止工作
  • 原文地址:https://www.cnblogs.com/handboy/p/7148483.html
Copyright © 2011-2022 走看看