现在的位置: 首页 > 综合 > 正文

让按钮倒计时10秒以后才能点击提交

2013年01月05日 ⁄ 综合 ⁄ 共 577字 ⁄ 字号 评论关闭

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>让按钮倒计时10秒以后才能点击提交 </title>
<script language="JavaScript">
i
=10
function change()
{
   
var p=document.getElementById("p");
   i
--;
   p.value
="同意"+i
   
if(i==0)
    { 
      p.disabled
=false
    }
   
else
   {
      setTimeout(
"change()",1000);
   }
  }
</script>
</head>
<body OnLoad="change()">

   <input type=button id="p" disabled>

</body>
</html>

 

抱歉!评论已关闭.