列見出しの上に検索テキストボックスを含むテーブルを作成したい
<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" />
フォームタグ間のどこにでも配置できますか?