欢迎光临
我们一直在努力

jquery 定时器的使用

建站超值云服务器,限时71元/月

在页面上定时做某些事,如:站内短信提醒:当发信人给收件人发送一条短信,收件人在浏览此网站的时候,网站右下角会弹出一个框,提醒收件人已经收到一条短信,收件人可通过点击提醒,查看他的短信。

以下我写了一个例子,综合了几个具体功能在一起:

1、jquery修改页面上某个div中的内容

2、时间格式化功能

3、定时器设置,开始和停止

代码如下:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<title>jquery定时器使用方法</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
#div1{ font-size:36px; color:#f00; font-weight:bold; }
</style>
</head>

<body>
<div id="div1"></div>
<script type="text/javascript" src="http://www.aspbc.com/js/jquery.js"></script>
<input type="button" name="startChat" id="startChat" value="开始">
<input type="button" name="closeChat" id="closeChat" value="停止">
<script type="text/javascript">
$(function(){
	 chat();        
     run();             //加载页面时启动定时器   
     var interval;   	   //定义一个定时器
	 function run() {   
		interval = setInterval(chat, "1000");   //定时的设置
	 }   
	 function chat() {   
		  var d=new Date().format('yyyy-MM-dd hh:mm:ss');
		  $("#div1").html(d); //jquery修改页面上div中的内容
	 }          
     $("#closeChat").click(function(){          
         clearTimeout(interval);  //关闭定时器          
     })   
	  $("#startChat").click(function(){          
         chat();
		 interval = setInterval(chat, "1000");     //启动定时器          
     })        
}); 

Date.prototype.format = function(format)
{
	var o = {
	"M+" : this.getMonth()+1, //month
	"d+" : this.getDate(),    //day
	"h+" : this.getHours(),   //hour
	"m+" : this.getMinutes(), //minute
	"s+" : this.getSeconds(), //second
	"q+" : Math.floor((this.getMonth()+3)/3),  //quarter
	"S" : this.getMilliseconds() //millisecond
	}
	if(/(y+)/.test(format)) format=format.replace(RegExp.$1,
	(this.getFullYear()+"").substr(4 - RegExp.$1.length));
	for(var k in o)if(new RegExp("("+ k +")").test(format))
	format = format.replace(RegExp.$1,
	RegExp.$1.length==1 ? o[k] :
	("00"+ o[k]).substr((""+ o[k]).length));
	return format;
}
</script>
</body>
</html>

(鼠标移到代码上去,在代码的顶部会出现四个图标,第一个是查看源代码,第二个是复制代码,第三个是打印代码,第四个是帮助)

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » jquery 定时器的使用
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址