<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <script type="text/javascript" src="js/jquery-1.11.0.min.js"></script> <style type="text/css"> .btn { width: 100px; height: 50px; background-color: lightgoldenrodyellow; } </style> </head> <body> <input type="button" id="btnid" name="butname" value="同意" class="btn" disabled="disabled" /><br /><br /> <input type="button" id="btnCid" name="butname" value="变化" class="btn" disabled="disabled" /> <!-- 在页面中有一个同意按钮,要求按钮默认不可点击, 在5秒之后才可以点击这个按钮 按钮可用状态时,点击按钮,按钮变为不可用状态,在5秒之后才可以点击这个按钮 --> <script type="text/javascript"> $(function() { showNumber(); }) function showNumber(){ for(var i = 1; i <=5; i++) { setTimeout("show("+i+")", i * 1000);//注意setTimeout方法中带参数的方法特殊处理,双引号不能包含变量 } } function show(i){ var x=6-i; $("#btnCid").val("变化 "+x); // alert(x); if(x==1){ setTimeout("showbtn()",1000); //注意 效果有1秒的延迟,所以这里要等上1秒 } } function showbtn(){ alert("可用"); $("#btnCid").removeProp("disabled"); } $("#btnCid").click(function(){ disablebtn(); showNumber(); }) function disablebtn(){ $("#btnCid").prop("disabled","disabled"); } </script> <!-- 下边这个不带倒计时数字 --> <!--<script type="application/javascript"> $(function(){ setTimeout("showbtn()",5000); }); function showbtn(){ alert(); $("#btnid").removeProp("disabled"); } $("#btnid").click(function(){ disablebtn(); setTimeout("showbtn()",5000); }) function disablebtn(){ $("#btnid").prop("disabled","disabled"); } </script>--> </body> </html>