信息交流、传播、提炼

nice to meet you

博客园 首页 新随笔 联系 订阅 管理
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>网页特效观止|JsCode.CN|---注册按钮在倒计时后才可以点击的效果</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
 <input type="submit" name="Submit" value="同意" />
</form>
<script language="javascript">
document.form1.Submit.disabled = true;
var speed = 1000; //速度
var wait = 10; //停留时间
function waitforok(){
  if(wait == 0){
    document.form1.Submit.value = "我同意";
    document.form1.Submit.disabled = false;
  }
  else{
    document.form1.Submit.value = "阅读条款"+wait;
    wait--;
    window.setTimeout("waitforok()",speed);
  }
}
waitforok();
</script>
</body>
</html>
posted on 2010-06-10 19:45  seeyou  阅读(282)  评论(0)    收藏  举报