我需要在 EditorFor 字段上使用 datepicker。
我的视图代码是:
<div class="editor-label">
@Html.Label("birthDate","birthDate")
</div>
<div class="editor-field">
@Html.EditorFor(model => model.birthDate, new { @class = "datepicker"})
@Html.ValidationMessageFor(model => model.birthDate)
</div>
剧本:
<script type="text/javascript">
$(document).ready(
function () {
$('.datepicker').datepicker({
changeMonth: true,
changeYear: true,
minDate: "-99Y",
dateFormat: "dd/mm/yyyy"
});
});
我不能让它工作。我有以下错误:Microsoft JScript 运行时错误:对象不支持此属性或方法“datepicker”。
在尝试调用该函数之前,我已经加载了 jQuery。