在Web开发中,SetTimer函数可以用于设置定时器,即使特定的函数在指定的时间间隔内重复执行。以下是使用SetTimer函数的步骤:
<button id="startTimer">Start Timer</button>
<button id="stopTimer">Stop Timer</button>
function timerFunction() {
console.log('Timer is running...');
}
let timerId;
document.getElementById('startTimer').addEventListener('click', function() {
timerId = setInterval(timerFunction, 1000); // 1000 milliseconds = 1 second
});
document.getElementById('stopTimer').addEventListener('click', function() {
clearInterval(timerId);
});
这就是在Web开发中使用SetTimer函数设置定时器的基本步骤。您可以根据您的需求调整函数和时间间隔。