1
<input class="datefield" value="@ViewBag.SelectedFromHour" id="TimeFrom" name="TimeFrom" type="time">
我@ViewBag.SelectedFromHour
值5:00
。但它不顯示它。
<input class="datefield" value="@ViewBag.SelectedFromHour" id="TimeFrom" name="TimeFrom" type="time">
我@ViewBag.SelectedFromHour
值5:00
。但它不顯示它。
該值需要爲05:00
(上午5點)或17:00
(下午5點)。
不過,我強烈建議您綁定到你設定的TimeFrom
的值,並使用@Html.TextBoxFor(m => m.TimeFrom, new { @type = "time" })
模型(你財物應的typeof TimeSpan
)
還要注意type="time"
不是在所有的瀏覽器完全支持。