.NET MVC在输入时禁用本机验证消息

时间:2018-12-05 11:11:56

标签: c# html asp.net asp.net-mvc

我有一个time类型的输入字段,如下所示

<input type="time" name="visible-start-time" id="visible-start-time" class="form-control half-input" value="@(Model==null?"":Model.StartTime.TimeOfDay.ToString())"/>

enter image description here

我不希望显示本机html验证消息。

1 个答案:

答案 0 :(得分:0)

您需要向novalidate标签添加<form>属性,以禁用浏览器的本机验证(对于所有控件)。

说明了here