asp.net – jquery禁用特定时间的按钮

前端之家收集整理的这篇文章主要介绍了asp.net – jquery禁用特定时间的按钮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要禁用特定时间的按钮.我怎样才能做到这一点?

解决方法

禁用该按钮,然后使用setTimeout运行几秒钟后启用该按钮的功能.
$('#some-button').attr("disabled","disabled");
setTimeout('enableButton()',5000);

function enableButton(){
   $('#some-button').removeAttr('disabled');
}
原文链接:https://www.f2er.com/aspnet/246106.html

猜你在找的asp.Net相关文章