yunye 的 JavaBlog

@see codemouse

统计

留言簿(1)

阅读排行榜

评论排行榜

几个javascript时间函数

now=new Date();
hours = now.getHours();  //得到小时
minutes = now.getMinutes();  //得到分钟
seconds = now.getSeconds();  //得到秒

year=now.getYear();  //得到年份
month=now.getMonth()+1;  //得到月份
date=now.getDate();  //得到日期
day=now.getDay();  //得到星期数

一个显示时间日期的函数:

function clock()
{
 var timeStr, dateStr;
 now = new Date();
 // time
 hours = now.getHours();
 minutes = now.getMinutes();
 seconds = now.getSeconds();
 if(hours < 10)
  timeStr = "0"+hours;
 else timeStr=hours;
 if(minutes < 10)
  timeStr+=":0"+minutes;
 else timeStr+=":"+minutes;
 if(seconds < 10)
  timeStr+=":0"+seconds;
 else timeStr+=":"+seconds;
 document.clock.time.value=timeStr;
 //date
 year=now.getYear();
 month=now.getMonth()+1;
 date=now.getDate();
 dateStr=year;
 if(month<10)
  dateStr+="/0"+month;
 else dateStr+="/"+month;
 if(date<10)
  dateStr+="/0"+date;
 else dateStr+="/"+date;
 document.clock.date.value=dateStr;
 Timer=setTimeout("clock()",1000);
}

posted on 2008-08-30 03:22 yunye 阅读(1617) 评论(0)  编辑  收藏 所属分类: javascript


只有注册用户登录后才能发表评论。


网站导航: