JS获取当前日期、比较日期大小

//获取当前时间,格式YYYY/MM/DD
function getNowFormatDate() {
    var date = new Date();
    var seperator1 = "/";
    var year = date.getFullYear();
    var month = date.getMonth() + 1;
    var strDate = date.getDate();
    if (month >= 1 && month <= 9) {
        month = "0" + month;
    }
    if (strDate >= 0 && strDate <= 9) {
        strDate = "0" + strDate;
    }
    var currentdate = year + seperator1 + month + seperator1 + strDate;
    return currentdate;
}

//比较日期大小
function compareDate(date1, date2) {
    var date1 = new Date(date1);
    var date2 = new Date(date2);
    if (date1.getTime() > date2.getTime()) {
        return true;
    } else {
        return false;
    }
}

//比较分钟的大小
function compareMinutes (now, now2){

 //获取当前时间的分钟
 int min_now = now.getMinutes();
 int min_now2 = now2.getMinutes();
 //比较打小
 if((min_now-min_now2)>2){
    console.log("验证码已超时,请重新获取");
 }

}
发布了143 篇原创文章 · 获赞 31 · 访问量 14万+

猜你喜欢

转载自blog.csdn.net/qq_42112846/article/details/100626034
今日推荐