extjs前台如何停止定时刷新

2025-05-13 00:17:39
推荐回答(1个)
回答1:

你想停止setInterval
那么可以定义一个全局的变量比方说temp
然后启动时用 temp=setInterval
然后想停止时用 clearInterval(temp);