我想在按钮元素中显示表格元素。单击按钮后,我想使用表格中的数据提交表单。我是这样做的:
<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>
答案 0 :(得分:0)
使表元素成为按钮元素的子元素的想法很奇怪。我不太明白你想要实现什么,但是如何使用古老的方法来使table元素成为form元素的子元素。