gpt4 book ai didi

html - 表元素中允许的表单元素在哪里?

转载 作者:行者123 更新时间:2023-12-02 01:13:24 24 4
gpt4 key购买 nike

我想在列标题上方创建一个带有搜索文本框的表格

<table>
<thead>
<tr><td><input type="text" /></td><td><input type="text" /></td></tr>
<tr><td>Mother</td><td>Father</td></tr>
</thead>
<tbody id="search-results">
<!-- to be populated by AJAX response -->
</tbody>
</table>

表单元素允许这样吗?

<form>
<thead>...</thead>
</form>

<thead>
<form>...</form>
</thead>

还是哪种方式?

另外,可以<input type="hidden" />绝对放在表单标签之间的任何地方?

最佳答案

你应该包装整个 <table> <form> 中的元素, 你不能在 <table> 里面放任何与表无关的东西除了内部 <th> , <td><caption>元素。因此,如果您不想将整个表单放在 <td> 中单元格,您应该将整个表格包装在 <form> 中.

<input type="hidden">标签就像任何其他输入标签一样 - 它们必须包含在 <td> 中和其他内容标签。

关于html - 表元素中允许的表单元素在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14576976/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com