在 jquery 中,我正在尝试验证日期,但如果低于 12,我的日期字段被视为每月。
test data:
dd/mm/yyyy
from date Value :07/03/2013
to date value :05/06/2013
Javascript:
var startdatevalue = $('#txtFromDate').val();
var Todatevalue = $('#txtToDate').val();
if (Todatevalue < startdatevalue) {
alert("To Date should be greater than From Date.");
$('#txtToDate').focus();
return false;
}
而comapring条件设置为true,这在我的场景中是false。迄今为止更大。快速解决方案将有所帮助....