时间:2021-05-26
setInterval是一个很有用的js函数,可以用来重复执行某些功能,利用这个我们可以实现一些很有趣的功能,比如:
不刷新页面的情况下,"实时"获取其它会员给你发来的问候,并弹出显示之类
下面给一个示例代码:(里面用了一些jquery的方法)
复制代码 代码如下:
<html>
<head>
<title>jquery 操作 Select</title>
<script type="text/javascript" src="jquery-1.2.6.pack.js"></script>
<script type="text/javascript">
var i=1;
var _interval;
function showTime()
{
var today = new Date();
$("#msg").html(today.toLocaleString() + ",i=" + i);
i++;
if (i>10)
{
clearInterval(_interval);
}
}
$(document).ready(function(){
$("#btnStart").click(function(){
showTime();
_interval = setInterval("showTime()", 1000);
})
$("#btnStop").click(function(){
clearInterval(_interval);
i=0;
})
})
</script>
</head>
<body>
<label id="msg"></label>
<button id="btnStart">开始记时</button>
<button id="btnStop">停止记时</button>
<script type="text/javascript"></script>
</body>
</html>
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一般情况clearInterval函数要和setInterval函数配合使用,其主要是用来取消由setInterval函数设置的事件执行间隔,其语法形式如下cl
用setInterval方法可以以指定的间隔实现循环调用函数,直到clearInterval方法取消循环用clearInterval方法取消循环时,必须将set
用setInterval方法可以以指定的间隔实现循环调用函数,直到clearInterval方法取消循环用clearInterval方法取消循环时,必须将set
在jQuery之焦点图转换-左右的基础上,将jQuery代码改成js原生,并添加定时器(setInterval()和clearInterval())焦点图转换-
知识要点varfn=setInterval(function(){},1000)每隔1秒执行一次函数clearInterval(fn)清除计时器判断当图片放大缩