admin管理员组文章数量:1344210
In my code the button .getmore gets clicked on scroll down. It loads data from database.Works fine. I need to make it disable for 5 sec after every click. How can I set this delay timer?
Or is it possible to disable this function for 5 sec once it fires? Disable the button or disable the function anything will work for me.
$(window).scroll(function(){
if ($(document).height() <= $(window).scrollTop() + $(window).height()) {
// Here how can i set a delay time of 5 sec before next click
$('.getmore').click();
}
});
In my code the button .getmore gets clicked on scroll down. It loads data from database.Works fine. I need to make it disable for 5 sec after every click. How can I set this delay timer?
Or is it possible to disable this function for 5 sec once it fires? Disable the button or disable the function anything will work for me.
$(window).scroll(function(){
if ($(document).height() <= $(window).scrollTop() + $(window).height()) {
// Here how can i set a delay time of 5 sec before next click
$('.getmore').click();
}
});
Share
Improve this question
edited Jan 24, 2017 at 22:14
j08691
208k32 gold badges269 silver badges280 bronze badges
asked Jan 24, 2017 at 22:11
True speakerTrue speaker
3621 gold badge3 silver badges15 bronze badges
2
- Although I know what you are trying to achieve, wouldn't be better to add an event listener rather than using a fixed amount of time and keep the button disabled until the server responds? – AndreFeijo Commented Jan 24, 2017 at 22:13
- use setTimeout(function(){$('.getmore').click(); },"5000") – K D Commented Jan 24, 2017 at 22:14
4 Answers
Reset to default 7You can use setTimeout() function of jQuery.
$('.getmore').prop('disabled', true);
setTimeout(function() {
$('.getmore').prop('disabled', false);
}, 5000);
One solution is to use setTimout and disable the button with javascript using document.getElementById("yourButtonID").disabled = true;
You could use a flag inside the clickHandler:
var clickHandler = () => {
if (clickHandler.running)
return
clickHandler.running = true
setTimeout(() => { clickHandler.running = false }, 5000)
console.log(new Date())
}
$('#getmore').click(clickHandler)
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id='getmore'>more</div>
U can use setTimeout() n after that, put ur disable button function inside it.
setTimeout(document.getElementById('ur_button_id').style.display = 'none', 500);
本文标签: javascriptHow to disable this button for 5 sec after first clickStack Overflow
版权声明:本文标题:javascript - How to disable this button for 5 sec after first click? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743722625a2527831.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论