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
Add a ment  | 

4 Answers 4

Reset to default 7

You 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