网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 window.clearInterval与window.setInterval的用法详解
内容
    window.setInterval()
    功能:按照指定的周期(以毫秒计)来调用函数或计算表达式。
    语法:setInterval(code,millisec)
    解释:code:在定时时间到时要执行的JavaScript代码串。
    millisec:设定的定时时间,用毫秒数表示。
    返回值:定时器的ID值,可用于clearInterval()方法停止指定的定时器。
    注:setInterval()方法会不停地调用函数,直到用clearInterval()终止定时或窗口被关闭。
    window.clearInterval()
    功能:取消由setInterval()方法设置的定时器。
    语法:clearInterval(id_of_setinterval)
    解释:id_of_setinterval:由setInterval()返回的ID值。该值标识了一个setInterval定时器。
    也就是:window.setInterval()返回的就是window.clearInterval的参数
    例子:
    <script type="text/javascript">
    var count = 0;
    var timeID;
    function timeCount()
    {
    document.getElementByIdx('timetxt').value = count;
    count++;
    }
    function beginCount()
    {
    timeID = setInterval("timeCount()",1000);
    }
    function stopCount()
    {
    clearInterval(timeID);
    }
    </script>
    <input type="button" value="开始计时" onclick="beginCount()" />
    <input type="text" id="timetxt" size="5" />
    <input type="button" value="停止计时" onclick="stopCount()" />
    再如:
    var objTimer = window.setInterval("moveDiv()",10)是调动定时器,其中moveDiv是js的一个函数
    if(objTimer) window.clearInterval(objTimer)是停止定时器
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/22 11:02:41