2

我正在开发 MVC 项目,并且使用 jquery datepicker 我在帖子中遇到了问题。我使用包含文本框和 jquery 函数的局部视图。像这样:

 @model Nullable<System.DateTime>
<div class="row-fluid input-append">
    @if (Model.HasValue && Model.Value != DateTime.MinValue)
    {
        @Html.TextBox("", String.Format("{0:dd/MM/yyyy}", Model.Value), new { @class = "input-small date-picker",@readonly = true, style = "cursor:pointer; background-color: #FFFFFF; text-align: center;" })
    }
    else
    {
        @Html.TextBox("", String.Format("{0:dd/MM/yyyy}", ""), new { @class = "input-small date-picker", @readonly = true, style = "cursor:pointer; background-color: #FFFFFF; text-align: center;" })
    }
</div>

@{
    string name = ViewData.TemplateInfo.HtmlFieldPrefix;
    string id = name.Replace(".", "_");
}

<script type="text/javascript">
    $('#@id').datepicker({
        dateFormat: 'dd/mm/yy',
        todayHighlight: true,
        clearBtn: true,
        forceParse: true,
        autoclose: true,
    });
</script>

当我格式化日期选择器以选择以天/月/年为单位的日期时,当我选择日期时,格式就可以了!我的意思是,我在日历中选择了 8 月 5 日,文本框显示 05/08/2013,但是单击保存时会出现问题,因为在控制器中,日期的值从天更改为月!谢谢!

4

1 回答 1

2

添加web.config以下内容:

<system.web>
    <globalization culture="en-GB" uiCulture="en-GB" />
</system.web>

它应该更改默认日期解析。

于 2013-10-09T19:55:53.937 回答