标签:
$(function(){
showTime();
});
function showTime () { var curtime=new Date(); $(".getDateTime").text(curtime.toLocaleString()); setTimeout("showTime()",1000);}
Jquery 生成时钟
原文地址:http://www.cnblogs.com/vichin/p/5865281.html