为什么在JavaScript中countBreak()函数一直在更新,而不是countdown()函数

Why does the countBreak() function keep updating and not the countdown() function in JavaScript?

本文关键字:函数 countdown 一直 countBreak JavaScript 为什么 更新      更新时间:2023-09-26

我希望计时器的两个函数一个接一个地运行,countdown()函数运行一次,countBreak()函数持续运行,你能解释一下为什么会这样,如何解决这个问题,以及如何在单击时暂停"sessionCountdiv"吗?这只是我面临挑战的代码部分。

var timeCount; // to hold the timer
function countdown() {
  var sessionData = countSession.textContent;
  sessionData--;
  document.getElementById('sessionCount').innerHTML = sessionData; //updating the content of session count
  timeCount = setTimeout('countdown()', 1000); //to start the timer
  if (sessionData < 0) {
    clearTimeout(timeCount);
    countBreak();
  }
}
//function to countdown breaklength
function countBreak() {
    var breakCount = breakDisplay.textContent;
    document.getElementById('sessionCount').innerHTML = breakCount; //updating the content of session count
    breakCount--;
    timeCount = setTimeout('countdown()', 1000); //to start the timer
    if (breakCount < 0) {
      clearTimeout(timeCount);
      countdown();
    }
  }
  //add eventListening to the div sessionCount
countSession.addEventListener('click', countdown, false);
<div id='displayBreak'></div>
<button type='button' id='minusButton'>minus</button>
<!--decreases the stored variable-->
<button type='button' id='plusButton'>plus</button>
<!--increses the stored variable-->
<div id='displaySession'></div>
<button type='button' id='minusSession'>minus</button>
<!--decreases the stored variable-->
<button type='button' id='plusSession'>plus</button>
<!--increses the stored variable-->
<div id='sessionCount'></div>

您应该将函数定义作为setTimeout的第一个参数传递,而不是将函数调用作为字符串传递。

timeCount = setTimeout(countdown, 1000);

而不是

timeCount = setTimeout('countdown()', 1000);