方法一:
var t;
//初始化定时器
$(function(){
init_fun_timer1();
});
function init_fun_timer1(){
//可执行方法
alert(1);
t = setTimeOut(function(){
init_fun_timer1()
}, 1000);
/*
还有一种写法: t = setTimOut("init_fun_timer1()",1000); 但不规范。
*/
}
#tips:
注意:这种定时不规范,在不同浏览器的效果可能不同。且该方法是死循环,建议用方法二
方法二:
//-----------------------------------------------------------------------
#示例如下:
<head>
<script type="text/javascript">
var timer = window.setInterval("queryExprieCount()",2000);
function queryExprieCount(){
$.ajax({
type: "POST",
async:true,
cache:false,
url: basePath + 'pc/queryOutTimeCount.do',
dataType : "json",
success:function(data){
if(data != 0){
$("#pcExprieControl").html("");
$("#pcExprieControl").html("存在"+data+"个已过期xx,请及时处理!");
$("#pcExprieControl").show();
}else{
$("pcExprieControl").hide();
}
},
error : function(xhr, status, errMsg) {
com.message("error","监控失败!");
}
});
}
</script>
</head>
<body>
<div id="pcExprieControl" value="" style="color: red;font-size: 20px;">
</div>
</body>
//----------------------------------------------------------------
var timer = window.setInterval("scrollup()", 50);//第一个是方法;第二个是间隔时间,单位ms
clearInterval(timer);//暂停该定时器
相关文章
- 放开那三国3太史慈怎么样 太史慈综合解析
- 和平精英灵敏度怎么调最稳 和平精英三指灵敏度设置方法
- Cocos2d-x 3.x学习笔记:猩先生带你打飞机(三)物理引擎的使用
- Cocos2d-x 3.x学习笔记:猩先生带你打飞机(三)物理引擎的使用
- 少年三国志2蜀国金将布阵位置 少年三国志2蜀国金将怎么搭配
- [spring源码学习]三、IOC源码——自定义配置文件读取
- 三国杀名将传v0攻略 三国杀名将传v0怎么玩
- 三国杀史诗宝珠怎么得 三国杀史诗宝珠获得方法
- 三国杀名将传v0阵容怎么搭配 三国杀名将传v0最强阵容
- JAVA基础再回首(二十五)——Lock锁的使用、死锁问题、多线程生产者和消费者、线程池、匿名内部类使用多线程、定时器、面试题