1
我想比較所選日期和當前日期。 Iam使用jQuery日期選擇器。雖然使用下面的代碼只有日期字段比較是發生...我怎樣纔能有月份和年份也...先謝謝了比較..jquery中的日期比較
$(document).ready(function() {
var objDate = new Date();
var selectedDate = document.getElementById("<%=txtRqstDate.ClientID %>").value;
var currentDate = $.datepicker.formatDate('dd/mm/yy', new Date());
if (Date.parse(selectedDate) > Date.parse(currentDate)) {
alert("Invalid date range!\n Please choose a date that is not later than today!")
return false;
}
else {
return true;
}