当用户输入MM / dd / yyyy格式的数据时,我有文本框,然后我需要解析该数据并将其转换为日期。我使用了momentjs,但我的代码不起作用。这是我的代码片段。
var otherProp = $('#' + param.otherproperty);
var StartDate = new date(moment(otherProp.val(), 'MM/dd/yyyy'));
特别是这条线路无效var StartDate = new date(moment(otherProp.val(), 'MM/dd/yyyy'));
我犯了错误?
感谢
我的完整代码如下
$.validator.addMethod("isgreater", function (value, element, param) {
var otherProp = $('#' + param.otherproperty);
var StartDate = new Date(moment(otherProp.val(), 'MM/DD/YYYY'));
var Enddate = new Date(value);
if (StartDate != '')
{
return Enddate >= StartDate;
}
return false;
});
答案 0 :(得分:0)
将所有MM/dd/yyyy
转换为大写MM/DD/YYYY
所以这应该有用
var otherProp = $('#' + param.otherproperty);
var StartDate = new Date(moment(otherProp.val(), 'MM/DD/YYYY'));