嗨,iam,使用以下代码将输入的日期与当前日期进行比较...但这不起作用...
$('#<%=txtOrderDate.ClientID%>').change(function() {
var date = $('#<%=txtOrderDate.ClientID%>').val();
var arrDate = date.split("/");
var today = new Date();
var useDate = new Date(arrDate[2], arrDate[1] - 1, arrDate[0]);
if (useDate > today) {
alert('Please Enter the correctDate');
$('#<%=txtOrderDate.ClientID%>').val('');
}
});
如果有人知道,请帮助我。
最佳答案
我试图复制您的代码,这在我的机器上有效
$('#txtbox').change(function() {
var date = $(this).val();
var arrDate = date.split("/");
var today = new Date();
useDate = new Date(arrDate[2], arrDate[1] -1, arrDate[0]);
if (useDate > today) {
alert('Please Enter the correctDate');
$(this).val('');
}
});
我从useDate中删除了var,并注意新的Dateparameter是(y,m,d)。
关于javascript - jQuery日期比较,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4344351/