js比较两个时间的大小
2021-01-14 19:11
阅读:468
标签:code get date() tps 使用 区别 字符 标准 ons js比较两个时间的大小 标签:code get date() tps 使用 区别 字符 标准 ons 原文地址:https://www.cnblogs.com/IwishIcould/p/13406219.html在工作中;我们可能会遇见比较两个时间的大小;
这个时候;我们就可以使用比较一下两个时间的大小
需要注意的是了解
//参考地址: https://www.cnblogs.com/Byme/p/7687313.html
function tab(date1,date2){
var oDate1 = new Date(date1);
var oDate2 = new Date(date2);
if(oDate1.getTime() > oDate2.getTime()){
console.log(‘第一个大‘);
} else if(oDate1.getTime()
评论
亲,登录后才可以留言!