原生:倒计时(请仔细阅读许可协议)

<!DOCTYPE html>
<html>
 <head>
  <title>许可协议按钮</title>
  <meta charset="gb2312" />

  <style type="text/css">
   #an{ width:170px;height:24px; }
  </style>

  <script type="text/javascript">
   var i=10;
   function init(){
    document.forms[0].an.disabled=true;
    yz();
   }

   function yz(){
    document.forms[0].an.value="(" + i +  ") 请仔细阅读许可协议";
    i--;
    if(i<0){
     document.forms[0].an.disabled=false;
     return false;
    }
    setTimeout("yz()",1000);
   }
  </script>

 </head>

 <body onload="init()">
  <form method="post" action="">
   <input type="button" id="an" name="an" value="单击"/>
  </form>

 </body>
</html>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章