clearInterval() 函数详解
Posted 红豆奶茶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了clearInterval() 函数详解相关的知识,希望对你有一定的参考价值。
定义和用法
clearInterval() 方法可取消由 setInterval() 设置的 timeout。
clearInterval() 方法的参数必须是由 setInterval() 返回的 ID 值。
语法
clearInterval(id_of_setinterval) |
参数 | 描述 |
id_of_setinterval | 由 setInterval() 返回的 ID 值。 |
实例
window.onload=function(){
var aLi=document.getElementsByTagName(‘li‘);
for(var i=0; i<aLi.length; i++){
aLi[i].onmouseover=function(){
var oSubNav=this.getElementsByTagName(‘ul‘)[0];
if(oSubNav){
var This=oSubNav;
clearInterval(This.time);
This.time=setInterval(function(){
This.style.height=This.offsetHeight+16+"px";
if(This.offsetHeight>=120)
clearInterval(This.time);
},30)
}
}
//鼠标离开菜单,二级菜单动画收缩起来。
aLi[i].onmouseout=function(){
var oSubNav=this.getElementsByTagName(‘ul‘)[0];
if(oSubNav){
var This=oSubNav;
clearInterval(This.time);
This.time=setInterval(function(){
This.style.height=This.offsetHeight-16+"px";
if(This.offsetHeight<=0)
clearInterval(This.time);
},30)
}
}
}
}
以上是关于clearInterval() 函数详解的主要内容,如果未能解决你的问题,请参考以下文章
JS中setInterval()和clearInterval()的使用以及注意事项 (实用,赞)
在javascript中 setInterval()clearInterval()clearTimeout()等等常用的函数的含义
setInterval,为啥只有当 clearInterval 函数高于 setInterval 函数时,计时器才停止?