我正在尝试比较两个日期恰好一个月。我使用下面的代码进行验证。它适用于这种情况:
从Date:1/5/2013
到Date:1/6/2013
但如果我们考虑二月份,则不起作用,例如:
fromDate:28/2/2013;
toDate:31/3/2013;
你能告诉我解决方案吗?
我尝试了下面的代码(source),但它不起作用。
var fromDate = new Date(document.getElementById("Billing_From").value);
var toDate = new Date(document.getElementById("Billing_To").value);
fromDate.setMonth( fromDate.getMonth() + 1 );
if((fromDate-toDate) !=0)
{
alert("Please limit the date range to 1 month.");
}