我试图阻止时间出现在使用 DateTime 的生日文本字段中
我的代码:(我正在使用 Jquery DatePicker)
<label for="birthday">Birthday:</label>
@Html.TextBox("birthday", (Model.Birthday.ToString()), new { @class = "datePicker" })
Javascript:
$(document).ready(function () {
$('.datePicker').datepicker({ showOn: 'both', buttonImage: "/content/images/calendar-red.gif" });
});
我有日期的模型设置:
[DataType(DataType.Date)]
public DateTime? Birthday { get; set; }
文本框中的文本仍然显示:
“2010 年 8 月 21 日上午 12:00:00”
我希望文本框中的文本显示为:
“2010 年 8 月 21 日”
我已经尝试了一切:
@inherits System.Web.Mvc.WebViewPage<System.DateTime>
但不会让我这样做,因为我正在使用模型