js code
$('.date ').each(function () {
$(this).datepicker("clearDates");
});
我的模型属性
[Display(Name = "Birth Date")]
public Nullable<DateTime> BirthDate { get; set; }
查看
@Html.TextBoxFor(model => model.BirthDate, new { @class = "form-control date" } )
我已经尝试添加一些格式,但仍然显示从数据库中检索的生日数不起作用。
编辑编辑!这条线是对此负责的。$(this).datepicker("clearDates");
跟进问题。
如何让它显示mm / dd / yy格式?
这是输入类型中显示的值 11/3/2015 12:00:00 AM
再次编辑! js的新代码,这解决了我后一个问题。
$('.date ').each(function () {
$(this).datepicker("update", new Date());
});