-1
我想檢查我在輸入字段(html)中輸入的日期和時間,以便這些條目在當前日期&時間之前不超過6個月。我們將如何驗證這種情況?檢查DateTime最多6個月過後的驗證
我想檢查我在輸入字段(html)中輸入的日期和時間,以便這些條目在當前日期&時間之前不超過6個月。我們將如何驗證這種情況?檢查DateTime最多6個月過後的驗證
試試這個,日期驗證功能的JavaScript
function dateValidation() {
var b = new Date("2014/01/22"); //your input date here
var d = new Date(); // today date
d.setMonth(d.getMonth() - 6); //subtract 6 month from current date
if (b > d) {
alert("date is less than 6 month");
} else {
alert("date is older than 6 month");
}
}
它的工作原理!謝謝@Piyush。 – Pratiksha 2015-02-25 07:16:22
首先自己嘗試一下,並顯示你在哪裏得到這個問題 – 2015-02-24 13:30:22
驗證哪裏。客戶端服務器?在JAVA中,在PHP中? – mplungjan 2015-02-24 13:35:24
我想在java腳本中使用邏輯 – Pratiksha 2015-02-24 13:43:06