Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我处于需要在表格行中使用表格的情况,但令人惊讶的是,我可以看到表格元素不能是表格、td、tr 的子元素。这种限制是否有任何合乎逻辑的原因,或者是否有任何解决方法?
它可以在 a 中td,但 atable应该只包含tr(或thead, tbody, tfoot)。tr应该只包含td. 所以不是表格元素不能出现在表格中,而是表格不允许大多数元素,除了一些特定的元素。
td
table
tr
thead
tbody
tfoot
表行 ( tr) 必须只包含表数据 ( td)。
您可以将表单放置在<td></td>元素中。
<td></td>