我已经在数据库上保存了日期格式,例如 2019-01-16 我想检查当前日期是否不大于当前日期,否则返回有效的otherise无效。 我有问题,它返回无效。 如何获得这种格式? 这种格式的结果无效。
$date = new Date('Y-M-D');
if ($date <= response.data[i]['card_expiry_date']){
status = "<button class='btn btn-success'>Valid</button>";
}else{
status = "<button class='btn btn-danger'>Invalid</button>";
}
答案 0 :(得分:2)
您还需要将响应中的日期也传递到new Date
:
var now = new Date();
var expiry = new Date(response.data[i]['card_expiry_date']);
if (now.getTime() <= expiry.getTime()) {
status = "<button class='btn btn-success'>Valid</button>";
} else {
status = "<button class='btn btn-danger'>Invalid</button>";
}