提交表单后,停止执行计时器功能

时间:2018-11-05 17:44:50

标签: javascript jquery timer form-submit

我有一个在线测验程序,用户需要在一定时间内完成它。当用户时间用完时,我会显示一条警报,提示您时间已到,他将被重定向到结果页面。当用户在时间到期之前完成测验并且位于结果页面中时,我会收到相同的警报。我已经修改了如下代码,但无法正常工作。我在一个名为questions.php的ajax请求页面中调用函数initTimer(1,1)。

index.php

function initTimer(periodInSeconds, status) {
  if (status == 0) {
    return false;
  }
  var end = Date.now() + periodInSeconds * 1000 * 60;
  var x = window.setInterval(function() {
    var timeLeft = Math.floor((end - Date.now()) / 1000);

    if (timeLeft < 0) {
      clearInterval(x);
      alert("Time's Up!");
      timeExpired = true;
      var completed = 1;
      $.ajax({
        type: "POST",
        url: "success.php",
        data: {
          'userID': <?php echo $_SESSION['userID'];?>
        },
        success: function(hasil) {
          $('.response_div').html(hasil);
        }
      });
    }

    $(document).find('#timerspan').html('00:' + (timeLeft < 10 ? '0' + timeLeft : timeLeft));
  }, 200);
}
//when user submits the form before time expires

$(document).on('submit', '.form_choice', function() {
  initTimer(1, 0)
  $.ajax({
    type: "POST",
    url: "result.php",
    data: data,
    success: function(hasil) {
      $('.response_div').html(hasil);
    }
  })
});

我不希望用户在时间到期前提交表单时执行init函数()。

1 个答案:

答案 0 :(得分:1)

initTimer函数外部声明用于保存计时器的变量,然后可以通过使用status = 0调用计时器来清除计时器

var timer;

function initTimer(periodInSeconds, status) {
  if (status == 0) {
    clearInterval(timer);
    return;
  }
  var end = Date.now() + periodInSeconds * 1000 * 60;
  timer = window.setInterval(function() {
    var timeLeft = Math.floor((end - Date.now()) / 1000);

    if (timeLeft < 0) {
      clearInterval(timer);
      alert("Time's Up!");
      timeExpired = true;
      var completed = 1;
      $.ajax({
        type: "POST",
        url: "success.php",
        data: {
          'userID': <?php echo $_SESSION['userID'];?>
        },
        success: function(hasil) {
          $('.response_div').html(hasil);
        }
      });
    }

    $(document).find('#timerspan').html('00:' + (timeLeft < 10 ? '0' + timeLeft : timeLeft));
  }, 200);
}
//when user submits the form before time expires

$(document).on('submit', '.form_choice', function() {
  initTimer(1, 0)
  $.ajax({
    type: "POST",
    url: "result.php",
    data: data,
    success: function(hasil) {
      $('.response_div').html(hasil);
    }
  })
});