js Date对象的使用

获取当前时间 ,用

var now = new Date(); //获取当前时间,Tue Feb 07 2017 17:28:35 GMT+0800 (中国标准时间)

now.getFullYear(); //2017,年份

now.getMonth(); //1,月份的范围是0-11,1是表示2月份

now.getDate(); //07,日

now.getDay(); //2,星期二

now.getHours(); //17,小时,24小时制

now.getMinutes(); //28,分钟

now.getSeconds(); //35,秒

now.getMilliseconds(); //774,毫秒

now.getTime(); //1486459715774,获取时间戳

情人节想和女票出去吃一顿。。。。。

var now = new Date();
var time = now.getTime();
var year = now.getFullYear();
var month = now.getMonth();
var date = now.getDate();
var day = now.getDay();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
var milliseconds = now.getMilliseconds();
if (month===1&&date===14) { //情人节是几月几号来着...
    alert('小妞,出来吧,我在餐厅定了位!');
}else {
    alert('每天都是情人节,我们就在家吃吧!');
}


我们也可以创建一个指定日期时间的对象

var date = new Date(2017,1,07,17,28,35,774);//对应 年、月(二月)、日、小时、分、秒、微秒

 

转载于:https://www.cnblogs.com/wuhaidong-me/p/6375267.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值