codecamp

WindowOrWorkerGlobalScope接口方法:clearInterval()

clearInterval()方法

WindowOrWorkerGlobalScope mixin 的 clearInterval() 方法取消了以前通过调用 setInterval() 建立的定时重复动作。

clearInterval()方法语法

scope.clearInterval(intervalID)

clearInterval()方法参数

intervalID
您要取消的重复动作的标识符。此 ID 由相应的对setInterval()的调用返回。

值得注意的是,setInterval () 和 setTimeout () 使用的 IDs 池是共享的,这意味着你可以在技术上互换地使用 clearInterval() 和 clearTimeout()。但是,为了使用的清晰,您应该避免这样做。

clearInterval()方法返回值

undefined

clearInterval()方法示例

请参考 setInterval() 方法中的例子。

规范

规范状态注释
HTML Living Standard 
规范中的'WindowOrWorkerGlobalScope.clearInterval()'的定义。
Living Standard
方法转移到最新规范中的WindowOrWorkerGlobalScope mixin。
HTML Living Standard 
规范中'clearInterval()'的定义。
Living Standard
 

浏览器兼容性

我们正在将兼容性数据转换为机器可读的JSON格式。

  • 电脑端
特征Chrome
Edge
Firefox(Gecko)
Internet Explorer
Opera
Safari
基本支持支持:1.0支持支持:1.0(1.7或更早)、52[1]支持:4支持:4支持:1.0 
  • 移动端

特征AndroidChrome for AndroidEdgeFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
基本支持支持:1.0支持:1.0支持支持:1.0 、52.0[1]支持:6.0支持:6.0支持:1.0

注释:

[1] clearInterval() 现在在 WindowOrWorkerGlobalScopemixin 上定义。

WindowOrWorkerGlobalScope接口方法:btoa()
WindowOrWorkerGlobalScope接口方法:clearTimeout()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Fetch API官方文档指南

Fetch API方法

WindowOrWorkerGlobalScope执行者:window

window属性

WindowOrWorkerGlobalScope执行者:WorkerGlobalScope

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }