我想從jQueryUI datepicker綁定選定的日期到要在控制器中使用的模型,但其返回null。我能夠檢索選定值時的FormCollection使用綁定選定的日期從jqueryui datepicker到型號
視圖模型
public class EmpViewModel
{
public int EmpId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public DateTime DateOfBirth { get; set; }
}
查看
<div class="col-md-10">
@Html.EditorFor(model => model.DateOfBirth,
new { htmlAttributes = new { @class = "form-control datefield" } })
</div>
控制器
public ActionResult Create(EmpViewModel emp)
{
}
試過下面的文章中的方法,但couldn」讓它工作 http://www.asp.net/mvc/overview/older-versions/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-4
腳本
<script>
$(function() {
$(".datefield").datepicker();
})
</script>
該教程是五歲什麼你的MVC版本?請粘貼您的'EmpViewModel' – naveen
@naveen - MVC 5,包含viewmodel – user3543878
顯示您爲datepicker連線的jQuery代碼。 – Jecoms