<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>定时器</title>
<script language="javascript" src="jquery-1.4.2.min.js"></script>
<script language="javascript">
$(function(){
//setInterval("$('#currentTime').text(new Date().toLocalsString());",1000);
setInterval(function(){
$("#currentTime").text(new Date().toLocaleString());
},1000);
});
</script>
</head>
<body>
<div id="currentTime"></div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>定时器</title>
<script language="javascript" src="jquery-1.4.2.min.js"></script>
<script language="javascript">
$(function(){
//setInterval("$('#currentTime').text(new Date().toLocalsString());",1000);
setInterval(function(){
$("#currentTime").text(new Date().toLocaleString());
},1000);
});
</script>
</head>
<body>
<div id="currentTime"></div>
</body>
</html>
本文介绍了一种使用jQuery简化DOM操作的方法,通过设置定时器实现网页上显示的时间每秒自动更新。此示例利用了setInterval函数配合jQuery的选择器和text方法,实现了简单而实用的功能。
1760

被折叠的 条评论
为什么被折叠?



