我正在使用 javascript 验证日期字段,我需要验证 DD/MM/YY
如果用户输入日期为 10/06/2012,它将有效
如果用户输入日期为 3/06/2012 意味着我们需要在日期之前添加一个零作为 03/06/2012。
我的 JavaScript 代码是
$('#date').blur(function () {
var collector = $('#date').val();
collector = collector.split("/");
if (collector[0].length != 2) {
if (collector[0].length == 1) {
//here code for make it as two digit
}
}
else
{
alert('Date is not entered properly');
}
});
我的 html
Date: <input type="text" id="date" name="date" />
如何用javascript做到这一点