码迷,mamicode.com
首页 > 其他好文 > 详细

按钮失效5秒

时间:2019-01-14 14:32:28      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:attr   .net   tail   get   this   art   details   按钮   https   


var wait = 5;
document.getElementById("btn").onclick = function() {
time(this);
}
function time(o) {
if (wait == 0) {
o.removeAttribute("disabled");

wait = 5;
} else {
o.setAttribute("disabled", true);

wait--;
setTimeout(function() {
time(o)
}, 1000)
}

---------------------
作者:xhyzkk
来源:CSDN
原文:https://blog.csdn.net/xhyzkk/article/details/74177727
版权声明:本文为博主原创文章,转载请附上博文链接!

按钮失效5秒

标签:attr   .net   tail   get   this   art   details   按钮   https   

原文地址:https://www.cnblogs.com/feiwenstyle/p/10265718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!