我在查看页面上的代码:
Html.LabelFor(x => x.StartTime, new {@class = ""}), Html.TextBoxFor(x => x.StartTime, new
{
@class = "startTime form-time", @Value = Model.StartTime.HasValue
? new DateTime(Model.StartTime.Value.Ticks).ToString("h:mm tt")
: string.Empty
})
我在开始时间字段中使用 Jquery 在 TimePicker 中选择了08:00 AM 。但是在从下拉字段中选择一个值(转到服务器端)后,时间选择器字段值在视图页面呈现后更改为上午 8:00 。也就是说,它删除了0值。但我希望该值与08:00 AM一样。