我想在按鈕元素中顯示錶格元素。點擊按鈕後,我想從表格中提交數據。我做了這樣:作爲按鈕元素html的子表。 MVC剃刀視圖
<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>
「實現類似的效果」 - 效果如何?你爲什麼要在一個按鈕上放一張桌子?你究竟想在這裏做什麼? – David
超鏈接怎麼樣?你可以做一個鏈接的類同樣作爲一個按鈕,可視 – user5328504
超鏈接我將不得不使用JavaScript來提交表單。我不是專家,所以我想避免它。 –