js过期时间
JS 几天后过期
function CheckInfoDate(infodate) {
// infodate 格式 yyyy-mm-dd
let today = new Date().getTime();
let theday = Date.parse(infodate.replace(/(\d+)-(\d+)-(\d+)/, '$2/$3/$1'));
if (today >= theday)
console.log("已过期")
else
console.log('还剩' + Math.floor((theday - today) / (24 * 3600 * 1000)) + '天');
}
有问题联系QQ1291481728或在下方评论,会在第一时刻处理。