• 例子:倒计时按钮可用


    <div style="500px; height:500px; margin:100px 0px 0px 100px">

    <input id="btn" type="submit" value="确定" style="100px; height:35px" disabled="disabled" />

    <span id="daojishi">10</span>

    <div style="margin-top:20px">  

      <span id="h"></span>    

      <span id="m"></span>    

      <span id="s"></span> </div>

    </div>

    <script type="text/javascript">

    window.setTimeout("YanChi()",1000);

    function YanChi()

    {  

      var span = document.getElementById("daojishi");    

      //改变span里面的值  

      span.innerText = span.innerText-1;    

      //判断是否减到了0

       if(span.innerText == 0)

       {   

        document.getElementById("btn").removeAttribute("disabled");   

        return;

       }  

       window.setTimeout("YanChi()",1000);  

    }

    window.setInterval("Bian()",1000);

    function Bian()

    {  

      var sj = new Date();      

      document.getElementById("h").innerText = sj.getHours();  

      document.getElementById("m").innerText = sj.getMinutes();  

      document.getElementById("s").innerText = sj.getSeconds();  

    }

    </script>

  • 相关阅读:
    GLSL 变量属性
    php读取大文件的方法
    php 3种常见设计模式
    php类自动装载、链式操作、魔术方法
    统计文件中关键词出现的次数
    python先序、中序、后序排序
    Nginx缓存、压缩配置
    Ninx虚拟主机的配置
    python爬虫代码
    Nginx在安装过程经常出现的问题
  • 原文地址:https://www.cnblogs.com/l5580/p/5909030.html
Copyright © 2020-2023  润新知