在我的项目中,我使用了两个 setInterval 函数,一个函数一直在运行。第二个功能是根据键盘输入动态启动和停止。如何找到第二个 setInterval 函数的状态(运行或超时)?
setInterval(function()
{
if(//want to check state of seInterval Function fire)
{
//somecode
}
},300);
var fire=setInterval(function()
{
// some code
},300);