我想在列标题上方创建一个带有搜索文本框的表格
<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" />
绝对放置在表单标签之间的任何位置吗?