码迷,mamicode.com
首页 > Web开发 > 详细

js时间函数

时间:2019-12-22 16:13:46      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:ros   今天   minutes   keyword   data   date()   mes   tom   time   

//获取今天的日期和时间
var myDate = new Date();

var year = myDate.getFullYear(); //年
var month = myDate.getMonth() + 1;//月
var date = myDate.getDate();//日
var h = myDate.getHours(); //当前时(0-23)
var m = myDate.getMinutes(); //当前分(0-59)
var s = myDate.getSeconds();//当前秒(0-59)

   //获取明天的日期

   var tomorrow = new Date();

   tomorrow.setTime(tomorrow.getTime() + 24*60*60*1000);

   tomorrow_month = tomorrow.getMonth()+1;//月

 tomorrow_date =  tomorrow.getDate();//日

//获取当前时间戳
var now_timestamp = myDate.getTime();

//获取指定时间的时间戳

var time = new Date( year, myDate.getMonth(), date, h, m, s);
var timestamp = time.getTime()

//比较两个时间的大小(先后)
if(now_timestamp > timestamp){
alert(‘当前时间大‘);
}

js时间函数

标签:ros   今天   minutes   keyword   data   date()   mes   tom   time   

原文地址:https://www.cnblogs.com/jdbeyond/p/12079880.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!