标签: c# html asp.net asp.net-mvc
我有一个time类型的输入字段,如下所示
time
<input type="time" name="visible-start-time" id="visible-start-time" class="form-control half-input" value="@(Model==null?"":Model.StartTime.TimeOfDay.ToString())"/>
我不希望显示本机html验证消息。
html
答案 0 :(得分:0)
您需要向novalidate标签添加<form>属性,以禁用浏览器的本机验证(对于所有控件)。
novalidate
<form>
说明了here