我正在尝试为最终用户提供时间选择功能。有一个限制,如果用户选择今天的日期并尝试选择时间。不允许最终用户选择已经过去的今天的时间。
我在这里面临的挑战是引导日期选择器使用格式。不同系统格式的比较需要。
我如何比较日期,以一种格式制作它们,以便我可以进行比较,然后检查时间验证。
我正在使用bootstrap time picker and date picker
.
我已经尝试过,但陷入了不同的格式和时间比较。
var tDate = $('#RequestToDate').val();
var now = new Date();
var twoDigitMonth = ((now.getMonth().length + 1) == 1) ? (now.getMonth() + 1) : (now.getMonth() + 1);
var currentDate = twoDigitMonth + "/" + now.getDate() + "/" + now.getFullYear();
now = now.getHours() + ':' + now.getMinutes();
if (tDate.toString() == currentDate) {
if (ftime <= now || totime <= ftime) {
//Show A Error message
}
}