标签:
js日期对象的方法
1. 获取日期对象
var mydate=new Date();
mydate: Tue Aug 11 2015 10:25:49 GMT+0800 (中国标准时间)
2.年份------ get/setFullYear()
var year=mydate.getFullYear(); year:2015;
mydate.setFullYear(81); year:0081
3.月份-------get/setMonth()
var month=mydate.getMonth(); month(返回值是0~11):7(代表8月)
mydate.setMonth(0); month:0 (代表1月);
mydate.setMonth(0,20); month:0 ; day: 20 (设置成了1月20日)
4.月份中的某天------get/setDate();
var day=mydate.getDate(); day(返回值是1~31) :11
mydate.setDate(15); day(取值是1~31) : 15
5.一周中的某天(星期X)-----getDay()
var weekday=mydate.getDay(); weekday(返回值是0~6 , 0代表星期日):2
6.返回/设置时间--------get/setTime()
var mytime=mydate.getTime();
单位毫秒数,计算从 1970 年 1 月 1 日零时到日期对象所指的日期的毫秒数;
如果让时间推迟一小时 ,可以用 mydate.setTime(mydate.getTime + 60*60*1000)
mydate:Tue Aug 11 2015 11:25:49 GMT+0800 (中国标准时间)
标签:
原文地址:http://www.cnblogs.com/summer323/p/4720371.html