<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function () {
$('button').on('click', function () {
// 转换DOM对象
$this = $(this);
// 保存原按钮的text值
var oldText = $this.text();
// 设置计时的开始值,5s要从6开始减
var i = 6;
//禁用按钮
$this.attr('disabled', true);
//设置定时器
var btnTimer = null;
btnTimer = setInterval(function () {
// 开始计数
i--;
// 注意clearInterval一定要最后,不然attr和text函数不会执行
if( i <= 0){
$this.removeAttr('disabled');
$this.text(oldText);
clearInterval(btnTimer);
}else{
$this.text(i);
}
}, 1000)
})
})
</script>
</head>
<body>
<button>按钮一</button>
<button>按钮二</button>
</body>
</html>
打开App,阅读手记