asp.net-mvc – HTML5元素的“传说”太少了

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – HTML5元素的“传说”太少了前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在MVC中有以下视图,并且会收到警告消息:验证(HTML5):元素“图例”发生的次数太少
@model Berwin.Models.viewmodels.Userviewmodel

@{
ViewBag.Title = "Press";
}

<h2>Press Area</h2>

@using (Html.BeginForm("Register","PressController",FormMethod.Post))
{
<fieldset>
    @Html.TextBoxFor(model => model.FullName)
</fieldset>

<fieldset>
    @Html.TextBoxFor(model => model.Company)
</fieldset>

<fieldset>
    @Html.TextBoxFor(model => model.EmailAddress)
</fieldset>

<fieldset>
    @Html.CheckBoxFor(model => model.JoinMailingList)
</fieldset>
}

想知道为什么我得到这个警告,我需要做什么来解决这个问题。

解决方法

根据HTML 5规范,< legend>标记不是< fieldset>中的必需元素。

The legend element represents a caption for the rest of the contents
of the legend element’s parent fieldset element,if any.

文件http://www.w3.org/TR/html5/forms.html#the-legend-element

在您的情况下,它只是由Visual Studio插件提供的警告。它不是必需的,并且可能有一种方法来抑制“工具” – “选项” – “文本编辑器” – “HTML – 验证”下的警告。在这里,您还可以切换验证的目标(HTML 5,XHTML 1等)

原文链接:https://www.f2er.com/aspnet/252190.html

猜你在找的asp.Net相关文章