jQuery 定时局部刷新(setInterval)


复制代码 代码如下:

<head>
<script src="jQuery/jquery-1.4.1.min.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
setInterval("startRequest()",1000);
});
function startRequest()
{
$("#date").text((new Date()).toString());
}
</script>
</head>

« 
» 
快速导航

Copyright © 2016 phpStudy | 豫ICP备2021030365号-3