Newbie_小白
没有都对的别人,也没有全错的自己,至少要有自己的坚持,无关他人、无关外物!
HTML:
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8"/>
<script src="js/jquery-2.2.2.min.js"></script>
<script type="text/javascript">
var countdown = 60;

function settime(obj) {
if (countdown == 0) {
obj.removeAttribute("disabled");
obj.value = "等待60秒";
countdown = 60;
return;
} else {
obj.setAttribute("disabled", true);
obj.value = "重新发送(" + countdown + ")";
countdown--;
}
setTimeout(function () {
settime(obj)
}, 1000)
}
</script>
</head>

<body>
<input type="button" id="btn" value="click me" onclick="settime(this)"/>

</body>

</html>
result:






posted on 2016-05-17 10:17  Newbie_小白  阅读(563)  评论(0)    收藏  举报