jqurey 时间转换和时间比较
作者:互联网
js时间转换:
var endDate = new Date(ExpirationDate); //字符串转时间
var nowDate = new Date(); //当前时间
var startDate = new Date(ExpirationDate); //字符串转时间
startDate.setMonth(startDate.getMonth() - 13);//设置月份
解析:
getMonth() //方法根据本地时间返回指定日期的月份(从 0 到 11)
setMonth() //方法设置日期对象的月份(从 0 到 11)
js错误的时间比较
if (startDate.getTime() <= nowDate.getTime() <= endDate.getTime()) {
}
js正确的时间比较
if (startDate.getTime() <= nowDate.getTime() && nowDate.getTime() <= endDate.getTime()) {
}
解析:
getTime() 方法为 返回从 1970 年 1 月 1 日午夜到指定日期之间的毫秒数。
标签:startDate,转换,getTime,js,时间,Date,new,jqurey 来源: https://www.cnblogs.com/shenzhoulong/p/16494654.html