表作为按钮元素html的孩子。 MVC剃刀视图

时间:2017-04-24 17:39:08

标签: html asp.net-mvc razor

我想在按钮元素中显示表格元素。单击按钮后,我想使用表格中的数据提交表单。我是这样做的:

<form>
    <button type="submit" class="ui-btn">
        @Html.Partial("Partial1")
    </button>
</form>

我使用https://validator.w3.org验证了我的网页,我收到了以下错误:

Element table not allowed as child of element button in this context. (Suppressing further errors from this subtree.)

所以我根本不能使用桌子作为按钮的孩子?如果不使用这种结构,我该怎么做才能达到类似的效果呢?

部分观点:

<table>
<tr>
    <th>First</th>
    <th>Second</th>
</tr>
<tr>
    <th>Firsta</th>
    <th>Second</th>
</tr>

1 个答案:

答案 0 :(得分:0)

使表元素成为按钮元素的子元素的想法很奇怪。我不太明白你想要实现什么,但是如何使用古老的方法来使table元素成为form元素的子元素。

请参阅此处的示例:https://www.cs.tut.fi/~jkorpela/forms/tables.html